有很多文章描述了如何创建相关的帖子实用程序。这就是我现在所拥有的:
where
这种方法的问题在于,具有多个共同标签的帖子的排名并不高于只有一个共同标签的帖子。有谁知道如何解决这个问题,最好是在查询类中?
谢谢
答案 0 :(得分:0)
试试这个
$args = array(
'posts_per_page' => -1,
'post_type' => 'post' // Enter your post type
'order' => 'DESC',
'post__not_in' => array($current_post_id),
'posts_per_page'=> 3,
'tag__in' => $tag_ids,
'post_status' => 'publish'
);
$query = WP_Query($args);
并检查参数我有所有参数WP_Query
enter link description here