我在侧边栏中有一个小部件,显示最近的帖子。下面的代码用于设置每个类别中每页的帖子数量,但它也会影响侧栏。有没有办法排除侧边栏?
/** Different number of posts per page depending on the category **/
function hwl_home_pagesize( $query )
{
if ( is_category( \'video\' ) )
{
// If you want "showposts"
$query->query_vars[\'showposts\'] = 10;
return;
}
}
add_action( \'pre_get_posts\', \'hwl_home_pagesize\', 1 );