标签: php wordpress
我正在尝试使用'get_posts'来获取两个类别的帖子。目前我正在使用这个: $myposts = get_posts('numberposts=1&category=4&category=7');
$myposts = get_posts('numberposts=1&category=4&category=7');
这会选择4类或7类的帖子。我想要提取的帖子必须同时包含在这两个类别中。有什么建议吗?
答案 0 :(得分:1)
使用此
$myposts = get_posts('numberposts=1&category=4,7');