我已经在两页中使用了“ 最新帖子”,并且需要限制这两页中某些具有特定类别的帖子。我在functions.php中添加了以下代码并保存。但是预期的结果并没有到来。 主页( ID-12 )和诗歌页面( ID-8 )是我添加了限制的那些页面 772和152是我要从提到的页面中限制的类别ID。
categories = [item['href'] for item in s1.select('.three_browse_columns a')][1]
请提供有关代码的建议
答案 0 :(得分:0)
只需查看下面的代码并将其写入“ functions.php”文件即可。它可能会对您有所帮助。
add_filter( 'widget_posts_args', 'my_widget_posts_args');
function my_widget_posts_args($args) {
return array(
'cat' => array(-5,-4) // pass the term id of category which you want to exclude with prefix "-".
);
}