首页>建站相关>wordpress显示相关文章

wordpress显示相关文章

很多主题的文章页面尾部会显示一些与当前文章相关的内容,这样做一方面扩展了页面,让页面看起来更为丰富,同时也给予了站内其他文章更多的展示机会。要达成这样的效果,并不需要依靠插件,只需要在合适的位置添加一段代码:

参考代码

<h3>相关文章</h3>
<ul class="related_posts">
<?php
$post_num = 8;
$exclude_id = $post->ID;
$posttags = get_the_tags(); $i = 0;
if ( $posttags ) {
$tags = ''; foreach ( $posttags as $tag ) $tags .= $tag->term_id . ',';
$args = array(
'post_status' => 'publish',
'tag__in' => explode(',', $tags),
'post__not_in' => explode(',', $exclude_id),
'caller_get_posts' => 1,
'orderby' => 'comment_date',
'posts_per_page' => $post_num,
);
query_posts($args);
while( have_posts() ) { the_post(); ?>
<li><a rel="bookmark" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" target="_blank"><?php the_title(); ?></a></li>
<?php
$exclude_id .= ',' . $post->ID; $i ++;
} wp_reset_query();
}
if ( $i < $post_num ) {
$cats = ''; foreach ( get_the_category() as $cat ) $cats .= $cat->cat_ID . ',';
$args = array(
'category__in' => explode(',', $cats),
'post__not_in' => explode(',', $exclude_id),
'caller_get_posts' => 1,
'orderby' => 'comment_date',
'posts_per_page' => $post_num - $i
);
query_posts($args);
while( have_posts() ) { the_post(); ?>
<li><a rel="bookmark" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" target="_blank"><?php the_title(); ?></a></li>
<?php $i++;
} wp_reset_query();
}
if ( $i == 0 ) echo '<li>没有相关文章!</li>';
?>
</ul>

以上代码会根据文章标签去生成相关的文章,其中post_num定义的所需要展示的文章数量,如果根据标签所搜寻到的文章数量不足八篇,代码会尝试扩大搜索范围从当前文章所属目录中补足,循环结束最终生成一个h3标题与一个无序列表。

修改代码

因为自己的博客每篇文章只设置了一个标签作为小标题使用,所以不准备利用循环来提取标签,常规的编程语言中可以直接给数组加上序号来提取第一个元素,就象这样“变量[0]”,但php中非索引类的数组似乎不允许这样使用,提取数组第一个元素的内容可以使用函数“current()”,同时因为觉得同目录的文章相关性没有同标签的文章来的强,所以取消了从目录提取补足文章数量的这一段,因为缩小了搜索范围,很容易就出现没有相关文章的情况,干脆把整个模块放进了判断内,没有文章的时候不显示整个模块,所以这段代码里也没有了“没有相关文章”的提示:

<?php
$post_num = 8;
$exclude_id = $post->ID;
$posttags = get_the_tags();
if($posttags){
$args = array(
'post_status' => 'publish',
'tag__in' => current($posttags)->term_id,
'post__not_in' => explode(',', $exclude_id),
'caller_get_posts' => 1,
'orderby' => 'comment_date',
'posts_per_page' => $post_num,);
query_posts($args);
if(have_posts()){
echo '<h3 class="related-title">相关文章</h3>';
echo '<ul class="related-posts">';
while( have_posts() ) { the_post(); ?>
<li><a rel="bookmark" class="related-post-title" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" target="_blank"><?php the_title(); ?></a></li>
<?php $exclude_id.=','.$post->ID;}
echo '</ul>';}
wp_reset_query();
}?>

添加元素

代码中我们只输出了相关文章的标题,事实上这段代码的“while(have_posts()){}”中的逻辑跟主循环是一致的,我们可以跟首页文章列表一样往里面添加一些其他的元素,比如文章摘要,输出文章摘要的语句如下:

<?php the_excerpt(); ?>

修改后的代码如下:

<?php
$post_num = 8;
$exclude_id = $post->ID;
$posttags = get_the_tags();
if($posttags){
$args = array(
'post_status' => 'publish',
'tag__in' => current($posttags)->term_id,
'post__not_in' => explode(',', $exclude_id),
'caller_get_posts' => 1,
'orderby' => 'comment_date',
'posts_per_page' => $post_num,);
query_posts($args);
if(have_posts()){
echo '<h3 class="related-title">相关文章</h3>';
echo '<ul class="related-posts">';
while( have_posts() ) { the_post(); ?>
<li>
<a rel="bookmark" class="related-post-title" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" target="_blank"><?php the_title(); ?></a>
<?php the_excerpt(); ?>
</li>
<?php $exclude_id.=','.$post->ID;}
echo '</ul>';}
wp_reset_query();
}?>

以上代码会根据标签提取最多8篇相关文章,输出文章的标题与摘要,如果该标签下没有相关文章,则不生成相关文章模块。

标签: wordpress

移动端可扫我直达哦~

推荐阅读

wordpress 2024-04-01

Wordpress的过滤器add_filter与apply_filters

对Wordpress的这个filters的概念一直是一知半解(其实半解也算不上,只能算知道有这么个函数),最近遇到了Wordpress的头像问题,无可避免的又遇到过滤器。刚好在CSDN上看到某篇文章写得比较清楚,摘录顺便自己动手尝试一...

建站相关 wordpress

wordpress 2024-03-28

Wordpress中Gravatar头像不显示的解决方案

Wordpress是个老牌的博客软件,版本迭代至今,几乎已经是市占率最高的一款建站工具。一直觉得一款软件,它的用户越多,使用就会越人性化,因为用户的使用水平不同,会遇到不同层次的问题,通过收集与筛选用户反馈,更可以有的放矢的去完善软件...

建站相关 wordpress

wordpress 2023-09-05

关于get_the_post_thumbnail函数

与the_post_thumbnail直接输出不同,get开头的函数,包括但不限于get_the_post_thumbnail,往往会返回一些值。在需要对这些值进行操作,比如转存或修改时,我们需要使用get系的函数。<?php ...

建站相关 wordpress

wordpress 2023-06-19

save_post的可接受参数与add_action语法

想在主页的文章列表中,为每一篇文章配置一张缩略图,之前修改twentyten主题的时候尝试过类似的实现,只是某天一个不小心“rm -rf wordpress”,连主题带所有图片都被删得一干二净。只记得是一个较为复杂的判断语句,先判断有...

建站相关 wordpress

wordpress 2023-06-10

customize自定义项目被保存后的后续处理

在自定义项目中设置了一组幻灯片的数据,本来准备直接在输入完成后对数据进行重组,利用换行符号分割数据,利用“||”符号区分连接与图片地址,在保存设置项时将输入数据直接组装为html语句。实际测试过程中极其不方便,一有更改就需要重新输入源...

建站相关 wordpress

wordpress 2023-05-07

Wordpress添加设置项目后如何修改项目值

使用add_option添加了一部分自定义设置,采用了数组的形式。希望其中部分设置能在保存或者修改文章之后自动获取新数据并更新,所以准备在“save_post”(编辑或发布后)执行一个更新数据的操作。Wordpress的函数命名很规范...

建站相关 wordpress

wordpress 2023-05-07

Wordpress生成标签云的函数wp_tag_cloud

很多站点上都会展现彩色的标签云,从个人浏览经验来看,相对于分类目录,文章标签反而更适合用户快速定位到意向查看的文章。一方面目录分类范围较大,一方面目录一般位于页眉,而标签云往往会被布局于页面底部,下意识的就近原则,也会让标签得到更多的...

建站相关 wordpress

wordpress 2023-04-30

wordpress自定义组件add_setting的回调测试

在后台设置了一个站点logo图片地址的参数,考虑到后期可能更换,有手动输入的需求,所以准备设计成仅输入文件名称,指定文件的文件夹,当用户输入后由系统组装文件夹地址与图片名称,从而得到完整的图片地址。虽然知道add_setting支持回...

建站相关 wordpress