А
$args = query_posts( array(
'post_type' => 'disease',
'posts_per_page' => get_option( 'posts_per_page' ),
'post_status' => 'publish',
'category_name' => $nameCat
) );
// require plugin_dir_path( FILE ) . 'tpl-cat.php';
$recent = new WP_Query($args);
while ( $recent->have_posts() ) : $recent->the_post();
?>


