$news_categ = $wp_query->queried_object->name; //find out the current category in WordPress
if ( get_query_var('paged') ) {
$paged = get_query_var('paged'); //find out the current page during pagination in WordPress
} else if ( get_query_var('page') ) {
$paged = get_query_var('page');
} else {
$paged = 1;
}
$news_pag = of_get_option('pag_news');
$news_categ='Категория1';
/* query arguments */
$args_news = array(
"post_type" => "news",
"news_categories" => $news_categ, //DISPLAY all news from the Категория1 category in WordPress
"posts_per_page" => $news_pag,
'post_status' => 'publish'
,"paged" => $paged//,
// 'category_name'=>'Категория1' won't work
// ,'cat'=>11
);
global $more;
$more = 0; ?>
if (have_posts()) : while (have_posts()) : the_post();
$news_thumb = wp_get_attachment_image_src(get_post_thumbnail_id(), 'news-thumb'); ?>
" class="news-img" />
// the_content('read more', 'framework'); /// if you need to display the full news post
the_excerpt(); // if you need to display a short news preview, the text is taken from the excerpt or automatically truncated from the full post
?>
Подробнее...
Comments