首页 建站教程 经验技巧

为WordPress主题文章纯代码添加历史上的今天列表

为了能更好地展示一些没有更新的老文章,我们可以在文章页面下添加一个“历史上的今天”功能获取老文章列表予以展示,如下图所示:


5fa4c43df13db.jpg


该功能代码取至柳城大佬的 wp-today 插件,具体实现方法将以下代码添加到function.php文件末尾即可。

//历史上的今天,代码来自 WP-Today 插件
function wp_today(){
    global $wpdb;
    $post_year = get_the_time('Y');
    $post_month = get_the_time('m');
    $post_day = get_the_time('j');
    $sql = "select ID, year(post_date_gmt) as h_year, post_title, comment_count FROM 
            $wpdb->posts WHERE post_password = '' AND post_type = 'post' AND post_status = 'publish'
            AND year(post_date_gmt)!='$post_year' AND month(post_date_gmt)='$post_month' AND day(post_date_gmt)='$post_day'
            order by post_date_gmt DESC limit 5";
    $histtory_post = $wpdb->get_results($sql);
    if( $histtory_post ){
        foreach( $histtory_post as $post ){
            $h_year = $post->h_year;
            $h_post_title = $post->post_title;
            $h_permalink = get_permalink( $post->ID );
            $h_comments = $post->comment_count;
            $h_post .= "<li><strong>$h_year:</strong>&nbsp;&nbsp;<a href='".$h_permalink."' title='".$h_post_title."' target='_blank'>$h_post_title($h_comments)</a></li>";
        }
    }
    if ( $h_post ){
        $result = "<h2>历史上的今天:</h2><ul>".$h_post."</ul>";
    }
    return $result;
}
function wp_today_auto($content){
    if( is_single() ){
        $content = $content.wp_today();
    }
    return $content;
}
add_filter('the_content', 'wp_today_auto',9999);

上述代码默认是在文章结尾自动添加。

如果需要自定义显示位置,则只需去掉上述代码的以下部分。

function wp_today_auto($content){
    if( is_single() ){
        $content = $content.wp_today();
    }
    return $content;
}
add_filter('the_content', 'wp_today_auto',9999);

然后在需要显示的位置用下面函数调用即可。

<?php echo wp_today(); ?>

样式文件的话没有调整,大家根据自己喜好自行调整一下吧。



评论(0)条

提示:请勿发布广告垃圾评论,否则封号处理!!

    猜你喜欢
    PHPzblog简洁响应式文章博客主题模板

    PHPzblog简洁响应式文章博客主题模板

     2021-12-02 774

    PHPzblog简洁响应式文章博客主题模板,响应式多终端,双栏绿色清新为主的个人BLOG分享网站,用bootstrap实现响应式。主题可设置主标题、副标题、头部背景图、网站关键字、网站描述,主题包括:首页、搜索页。

    Z-blog微信小程序模板/青春主题小程序模板

    Z-blog微信小程序模板/青春主题小程序模板

     2021-03-10 931

    Z-blog微信小程序模板,青春主题小程序模板。附带使用教程+小程序模板+插件。主要功能:1、首页自定义轮播2、首页自定义热门推荐3、在线客服4、自定义文章分类5、查看文章详情6、文章页分享朋友圈(限制安卓)

    免费WordPress主题QUI-Pure正式版/简约纯文本主题免费下载

    免费WordPress主题QUI-Pure正式版/简约纯文本主题免费下载

     2020-08-03 1350

    免费WordPress主题QUI-Pure正式版,这是一款简约纯文本主题,主题永久开源免费。演示地址:http://course.51qux.com

    QUX主题9.1.6解密版+破解版_WordPress主题

    QUX主题9.1.6解密版+破解版_WordPress主题

     2020-07-27 1484

    QUX主题9.1.6解密版+破解版_WordPress主题。本次分享两个,一个解密版,一个破解版,如果对破解版不放心,可以用解密版自行破解。

    WordPress主题文章作者评论区留言高亮显示

    WordPress主题文章作者评论区留言高亮显示

     2020-11-06 1560

    当WordPress文章作者在自己的文章中回复读者评论留言时,在名称后面显示“文本作者”提示,可以让读者明确知道是作者亲自回复自己的留言是不是有点小鸡冻呢。适合多作者的博客网站,单一作者的博客,还是用网上盛传的“管理员“提示更好些。首先将下

    苹果CMS高仿迅影网主题模板

    苹果CMS高仿迅影网主题模板

     2022-08-30 765

    一款苹果CMS8X高仿迅影网主题模板,已测试,完美无错。苹果cmsV8版本,只有电脑端,不自适应手机端。模板只包含首页、列表、内容页、播放页。具体大家看图吧,都是测试的截图,一模一样的。