Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

query lic ee

// WP_Query arguments
$args = array (
	'post_type'              => 'licitaciones',
	'category_name'          => 'Categorias',
	'tag_name'               => 'Licitacion',
	'pagination'             => true,
	'paged'                  => '5',
	'posts_per_page'         => '5',
	'posts_per_archive_page' => '10',
	'ignore_sticky_posts'    => false,
	'offset'                 => '10',
	'order'                  => 'DESC',
	'meta_query'             => array(
		array(
			'key'       => 'licitacion',
			'value'     => 'energia electrica',
			'compare'   => '=',
			'type'      => 'CHAR',
		),
	),
	'cache_results'          => true,
	'update_post_meta_cache' => true,
);

// The Query
$query = new WP_Query( $args );