Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个标题类别..我在所有类别页面的侧边栏小部件中使用此类别。
我想要这个,当我在一个类别(例如:Internet 类别)中时,我的标题小部件列表 Headline 和 Current Cat(例如:Internet 类别)常见最后 5 个帖子
示例图片:链接
我想列出常见的帖子标题和当前类别
问候
你的问题很小,但我认为这就是你想要的。
$args = array( 'category__and' => array($cat1,$cat2), 'posts_per_page' => 5 ); $common = new WP_Query($args);
您需要WP_Query在此行上传递您想要的类别的类别 ID 'category__and' => array($cat1,$cat2):. 这应该要求帖子同时属于这两个类别。您可能需要添加其他键/值来$args微调结果。请参阅法典页面。
WP_Query
'category__and' => array($cat1,$cat2)
$args