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

WordPress显示即将发布的文章列表,这也是无作为最新看教程折腾出来的,如果为新文章设置了定时发布,是否想在显著的位置放个提示,告诉读者马上将会有什么文章发布,可能会帮助你的博客获得更多的关注,这里有两种方法可以实现上述功能。

首先我们看看效果图如何:

图片[1]|WordPress显示即将发布的文章列表|无作为

下面是教程:

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

<ul>
<?php
$my_query = new WP_Query('post_status=future&order=DESC&showposts=10&ignore_sticky_posts=1');
if ($my_query->have_posts()) {
 while ($my_query->have_posts()) : $my_query->the_post();
 $do_not_duplicate = $post->ID; ?>
 <li><?php the_time('H:i') ?> <?php the_title(); ?></li>
 <?php endwhile;
}
?>
</ul>

方法二、将下面的代码添加到当前主题functions.php文件中(无作为用的是这种):

function future_posts_function($atts){
 extract(shortcode_atts(array(
 'poststatus' => 'future',
 'order' => 'DESC',
 'showposts' => 10,
 'ignore_sticky_posts' => 1
 ), $atts));
 $return_string = '<ul>';
 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 .= '<li>'.get_the_title().'</li>';
 endwhile;
 endif;
 $return_string .= '</ul>';
 wp_reset_query();
 return $return_string;
}
add_shortcode('future_posts', 'future_posts_function');
// 让文本小工具支持短代码
add_filter('widget_text', 'do_shortcode');

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

[future_posts]

这样就完美实现了WordPress显示即将发布的文章列表功能。

© 版权声明
THE END
点赞+收藏,以备不时之需!
点赞14 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容