我想在Wordpress中显示相关帖子。我需要手动选择这些帖子,而不是自动从类别或标签中选择。我之前使用过这段代码:
<?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(); ?>
这可以很好地从相关标签中选择,但我需要手动调用我的相关帖子。
我已将要在自定义字段“myrelatedposts”中调用的帖子ID作为逗号分隔列表,例如: 103,104,105,122
现在我需要在上面的脚本中调用它们。
如何将此帖子列表分解为数组(仍然限制为5个帖子)然后调用每个帖子缩略图和标题?
感谢您的任何建议。
答案 0 :(得分:1)
您应该尝试使用这些参数:
$args=array(
'post__in' => explode(',', get_post_meta($post->ID, 'myrelatedposts')),
'ignore_sticky_posts'=>1 // caller_get_posts is deprecated
);
要在循环中添加帖子缩略图,您只需使用post thumbnails functions,例如来自codex:
// check if the post has a Post Thumbnail assigned to it.
if ( has_post_thumbnail() ) {
the_post_thumbnail();
}
答案 1 :(得分:0)
有一个名为Similar Posts的插件。
http://wordpress.org/extend/plugins/similar-posts/
它搜索并匹配帖子内容,而不仅仅是标签。
我认为其中一个缺点是它运行了许多慢速SQL查询。