我们都比较喜欢给文章添加相关文章,那有没有想过给页面也添加相关页面,下面就一起来看看如何实现吧。
首先,我们需要知道,一般文章(post)都是通过 标签 或 分类 来获取相关文章的,但是 页面(page)默认是没有标签和分类的,所以我们需要先给页面也添加分类和标签功能,具体添加方法可以查看 为WordPress页面(page)添加标签和分类功能。
接下来,你就需要给内容有关联的页面归类或者添加标签。假设有这么两个页面“关于我们”和“公司历史”,那么你可以给这两个页面都添加一个相同的标签“关于我们”。
然后在当前主题的 functions.php 添加下面的代码:
/**
* WordPress为页面(page)添加相关页面
* https://www.wpdaxue.com/show-related-pages-in-wordpress.html
*/
function wpdx_related_pages() {
$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(
'post_type' => 'page', //检索页面类型
'tag__in' => $tag_ids, //根据标签获取相关页面
'post__not_in' => array($post->ID), //排除当前页面
'posts_per_page'=>5 //显示5篇
);
$my_query = new WP_Query( $args );
if( $my_query->have_posts() ) {
echo '<div id="relatedpages"><h3>相关页面</h3><ul>';
while( $my_query->have_posts() ) {
$my_query->the_post(); ?>
<li><div class="relatedthumb"><a href="<?php the_permalink()?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_post_thumbnail('thumb'); ?></a></div>
<div class="relatedcontent">
<h3><a href="<?php the_permalink()?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
<?php the_time('M j, Y') ?>
</div>
</li>
<?php }
echo '</ul></div>';
} else {
echo "没有相关页面";
}
}
$post = $orig_post;
wp_reset_query();
}
上面的代码会查询与当前页面有相同标签的页面,然后显示出来。如果你想要在页面中调用,那你需要编辑当前主题的 page.php 或者 content-page.php文件,然后在需要显示相关页面的地方使用下面的代码进行调用:
<?php if(function_exists(' wpdx_related_pages')) wpdx_related_pages(); ?>
剩下的工作,就是要你自己添加css样式来完善相关页面的显示效果啦。
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
您好,我看了您的这个帖子,把代码复制进 functions.php ,保存后,我的wp前后台全部白屏,无法打开修改。请问该怎么办? 🙁
自己看看你是否犯了一些基础的错误
http://www.wpdaxue.com/wordpress-functions-php.html
应该是的。我现在如何使前后台恢复正常呢?目前依然全部白屏中。。。