// WP_Query arguments $args = array( 'post_type' => array( 'licitaciones' ), 'paged' => '5', 'posts_per_page' => '5', 'posts_per_archive_page' => '10', 'ignore_sticky_posts' => false, 'offset' => '10', 'order' => 'DESC', 'cache_results' => true, 'update_post_meta_cache' => true, ); // The Query $query = new WP_Query( $args );