如何在 Wordpress 中使用 get_adjacent_post 显示关联类别

Posted

技术标签:

【中文标题】如何在 Wordpress 中使用 get_adjacent_post 显示关联类别【英文标题】:How to display associated categories with get_adjacent_post in Wordpress 【发布时间】:2013-12-04 01:10:50 【问题描述】:

我的 Wordpress 文章底部有一个 Next Post 链接。

我正在使用 get_adjacent_post 来显示帖子标题。我还想在我的这篇文章中显示附加的类别。

我不知道该怎么写。 我的尝试是:

<?php
                $prev_post = get_adjacent_post(false, '', true);
                if(!empty($prev_post)) 
                echo '<div class="next"><a href="' . get_permalink($prev_post->ID) . '" title="' . $prev_post->post_title . '"><span class="link">Next article  &rarr;</span><br/>' . $prev_post->post_title . '<br/><span class="grey">Filed under: ' . $prev_post->post_category . '</span></a></div>'; ?>

$prev_post->post_category 不起作用。有谁知道正确的语法吗?

谢谢!

【问题讨论】:

【参考方案1】:

get_the_category_list 应该可以解决问题:

get_the_category_list( ', ', '', $prev_post->ID )

【讨论】:

以上是关于如何在 Wordpress 中使用 get_adjacent_post 显示关联类别的主要内容,如果未能解决你的问题,请参考以下文章

如何在wordpress 3.0中使用自定义分类法

如何在 Wordpress 中显示 SQL 数据?

如何在 ajax 调用中使用 wordpress 函数

如何在wordPress中使用jquery

如何在 wordpress 帖子中使用降价

如何在 wamp 中使用多个 wordpress 网站?