在 Wordpress 中显示相关帖子

Posted

技术标签:

【中文标题】在 Wordpress 中显示相关帖子【英文标题】:Show related posts in Wordpress 【发布时间】:2012-10-08 12:42:30 【问题描述】:

我想。我需要手动选择这些帖子,而不是自动从类别或标签中选择。我以前使用过这段代码:

<?php $orig_post = $post;
global $post;
$tags = wp_get_post_tags($post->ID);
if ($tags) 
$tag_ids = array();
foreach($tags as $individual_tag) $tag_ids[] = $individual_tag->term_id;
$args=array(
'tag__in' => $tag_ids,
'post__not_in' => array($post->ID),
'posts_per_page'=>5, // Number of related posts that will be shown.
'caller_get_posts'=>1
);
$my_query = new wp_query( $args );
if( $my_query->have_posts() ) 

echo '<div id="relatedposts"><h3>Related Posts</h3><ul>';

while( $my_query->have_posts() ) 
$my_query->the_post(); ?>

<li><div class="relatedthumb"><a href="<? the_permalink()?>" rel="bookmark"     title="<?php the_title(); ?>"><?php the_post_thumbnail(); ?></a></div>
<div class="relatedcontent">
<h3><a href="<? the_permalink()?>" rel="bookmark" title="<?php the_title(); ?>"><?php  the_title(); ?></a></h3>
<?php the_time('M j, Y') ?>
</div>
</li>
<? 
echo '</ul></div>';


$post = $orig_post;
wp_reset_query(); ?>

这很好地从相关标签中选择,但我需要手动调用我的相关帖子。

我已将要调用的帖子 ID 作为逗号分隔列表放在自定义字段“myrelatedposts”中,例如: 103、104、105、122

现在我需要在上面的脚本中调用它们。

如何将此帖子列表分解为数组(仍限制为 5 个帖子),然后调用每个帖子的缩略图和标题?

感谢您的任何建议。

【问题讨论】:

【参考方案1】:

您应该尝试使用这些参数:

$args=array(
  'post__in' => explode(',', get_post_meta($post->ID, 'myrelatedposts')),
  'ignore_sticky_posts'=>1 // caller_get_posts is deprecated
);

要在循环中添加帖子缩略图,您只需使用 post thumbnails functions,例如来自法典:

// check if the post has a Post Thumbnail assigned to it.
if ( has_post_thumbnail() ) 
    the_post_thumbnail();
 

【讨论】:

【参考方案2】:

有一个插件叫做 Similar Posts。

http://wordpress.org/extend/plugins/similar-posts/

它搜索和匹配帖子内容,而不仅仅是标签。

我认为缺点之一是它运行许多慢速 SQL 查询。

【讨论】:

以上是关于在 Wordpress 中显示相关帖子的主要内容,如果未能解决你的问题,请参考以下文章

限制 Wordpress 用户只能查看页面和帖子

从帖子标题获取 WordPress 帖子 ID

Dart Flutter - 使用 Chopper 获取 WordPress 自定义帖子类型

WordPress 根据分类术语显示相关帖子

根据 phpmyadmin 中的类别 ID 获取 wordpress 帖子 ID 列表

是否可以从插件触发将 <script> 注入到多个 wordpress 帖子中?