Wordpress获取相关页面(基于标签) - wp_get_post_tags

时间:2014-04-07 11:36:51

标签: wordpress tags

当我放入single.php而不是page.php时工作,那是怎么回事?

有人可以开导我吗?

我正在研究Wordpress主题,并希望回显一页的所有标签。

代码:

<?php
$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),
'showposts'=>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 '<h3>Related Posts</h3><ul>';
while ($my_query->have_posts()) {
$my_query->the_post();
?>
<li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></li>
<?php
}
echo '</ul>';
}
}
?>

1 个答案:

答案 0 :(得分:0)

在page.php wp_get_post_tags($post->ID)尝试获取页面标记。 Wordpress不支持页面标记。要拥有此类选项,您必须为网页添加标记,使用 plugin执行此操作,或在许多tutorials之后添加代码