WordPress显示即将发布的文章列表

ė 527 6 0

如果为新文章设置了定时发布,是否想在显著的位置放个提示,告诉读者马上将会有什么文章发布,可能会帮助你的博客获得更多的关注,这里有两种方法可以实现上述功能

方法一:将下面代码添加到主题模板适当的位置即可。

    have_posts()) {
    while ($my_query->have_posts()) : $my_query->the_post();
    $do_not_duplicate = $post->ID; ?>

方法二、将下面的代码添加到当前主题functions.php文件中:

function future_posts_function($atts){
    extract(shortcode_atts(array(
        'poststatus' => 'future',
        'order'         => 'DESC',
        'showposts' => 10,
        'ignore_sticky_posts' => 1
    ), $atts));
    $return_string = '

    ';
        query_posts(array('post_status' => $poststatus, 'order' => $order, 'ignore_sticky_posts' => $ignore_sticky_posts, 'showposts' => $showposts));
        if (have_posts()) :
            while (have_posts()) : the_post();
                $return_string .= '

  • '.get_the_title().'
  • ';
            endwhile;
        endif;
        $return_string .= '

';
    wp_reset_query();
    return $return_string;
}
add_shortcode('future_posts', 'future_posts_function');
// 让文本小工具支持短代码
add_filter('widget_text', 'do_shortcode');

之后在文本小工具中添加短代码

[future_posts]

  • 灵魂发问:谁告诉你我国防空洞位置了吗?怕是99%中国人不知道,我也不知道,为什么,因为没告诉咱们啊!怕是很多当官的都不晓得吧!所以别老想着打这个那个,真打起来,你躲都不知道躲哪?最好的位置是到没有军事区,机场等落后位置,因为人家炸这些位置不仅没有利益还会被国际谴责。 --- 2025/03/08
主机推荐
:网友留言区仅供网友表达其个人观点,并不表明栖息邦最终立场。



管理员登录
注册

提示:点击上下面区域关闭

字号调整

View My Stats
空位 空位
本次加载耗时:0.735s