如果您将下面的代码放在一个中。php文件,您希望链接出现在帖子中的任何位置,或者出现在函数中的函数中。php和绑定到过滤器或操作(如“the\\u content”)的函数,您应该获得指向与当前阅读的帖子具有相同标签的帖子的链接列表。
global $post;
$this_post_tags_ids = wp_get_post_tags( $post->ID, array( \'fields\' => \'ids\' ) );
$query = new WP_Query( array(\'post_type\' => \'post\', \'posts_per_page\' => -1, \'tag__in\' => $this_post_tag_ids ) );
if ($query->have_posts()){
while($query->have_posts()){
$query->the_post();
echo the_title(\'<h3><a href="\'.get_the_permalink.\'"/>\', \'</a></h3>\');
}
}
wp_reset_query();
我没有测试它,但它应该可以工作。