Wordpress教程 2023年05月23日
0 收藏 0 点赞 1,447 浏览 1035 个字

本文来介绍下wordpress的相关文章功能实现代码。

首先还是来说明下这个相关文章是个什么逻辑,文章的相关性都是通过tag标签来关联的,如果两篇文章拥有相同的tag标签,则其中一篇文章的相关文章模块里面会显示另外一篇文章。

直接上wordpress的相关文章功能代码:

<?php
$posttags = get_the_tags();
$category = get_the_category($post->ID);
$the_cate_id = $category[0]->term_id;
$xg_array = array();
if ($posttags) {
    $tags = '';
    foreach ($posttags as $tag) $tags .= $tag->term_id . ',';
    $args = array(
        'post_status' => 'publish',
        'tag__in' => explode(',', $tags),
        'post__not_in' => explode(',', $post->ID),
        'caller_get_posts' => 1,
        'orderby' => 'comment_date',
        'posts_per_page' => 10,
    );
    $xg_array = query_posts($args);
}
if (count($xg_array) == 0) {
    $args = array(
        'post_status' => 'publish',
        'cat' => $the_cate_id,
        'orderby' => 'comment_date',
        'posts_per_page' => 10,
    );
    $xg_array = query_posts($args);
}
foreach ($xg_array as $related) {
    echo ' <li><a href="' . get_permalink($related->ID) . '" rel="external nofollow"  title="' . $related->post_title . '">' . $related->post_title . '</a></li>';
}
wp_reset_query();
?>

以上代码用的是“query_posts”函数,思路是先获取当前文章的tag标签,再通过tag标签来查询同标签的其他文章;如果没有同标签的其他文章,则显示当前文章所在分类下的最新文章。

PS:修改代码里面的数字10可以调整显示最大数量。

以上就是wordpress的相关文章功能实现代码示例了,有其他问题或者对以上代码有不同看法欢迎文章下面评论区域留言交流。

微信扫一扫

支付宝扫一扫

版权: 转载请注明出处:https://www.mizhanw.com/blog/2391.html

相关推荐
WordPress标签按拼音字母层级排序教程
此教程实现标签按拼音字母(A、B、C 等字母)层级排序,并在页面上添加一个侧边竖向字母导航 <?php /* Template Nam…
日期:2024-11-07 点赞:0 阅读:33
wordpress网站编辑器启隐藏的编辑器功能
如果开启WordPress隐藏的编辑器功能就够你用了,何必安装插件呢。 如何开启隐藏的编辑器功能 WordPress默认不支持TinyMCE…
日期:2024-10-29 点赞:0 阅读:45
在WooCommerce中添加“立即购买”按钮直接跳转到结算页面
add_action( 'woocommerce_after_add_to_cart_button', 'add_content_after…
日期:2024-10-19 点赞:0 阅读:65
实现 WordPress 自动更新所有文章的发布日期为当天的日期
//二开自动更新文章日期为当天发布。 //设置宝塔面板中的定时任务,通过访问带有?update_posts=run的链接触发文章更新.如:c…
日期:2024-09-22 点赞:0 阅读:90
WooCommerce订单列表显示购买产品
// 为 Legacy CPT-based 订单添加自定义列 add_filter('manage_edit-shop_order_colu…
日期:2024-09-20 点赞:0 阅读:180
WooCommerce Order 类的所有Get方法,以面向对象的方法获取订单数据
在开发WooCommerce插件或者与第三方系统交互时,我们需要获取 WooCommerce 订单的数据,WooCommerce的 WC_O…
日期:2024-09-20 点赞:0 阅读:186
发表评论
暂无评论

还没有评论呢,快来抢沙发~