最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
WordPress显示即将发布的文章列表的教程
时间:2022-06-25 18:41:34 编辑:袖梨 来源:一聚教程网
如果为新文章设置了定时发布,是否想在显著的位置放个提示,告诉读者马上将会有什么文章发布,可能会帮助你的博客获得更多的关注,这里有两种方法可以实现上述功能。
WordPress显示即将发布的文章列表
方法一:将下面代码添加到主题模板适当的位置即可。
$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; ?>
}
?>
方法二、将下面的代码添加到当前主题functions.php文件中:
function future_posts_function($atts){
extract(shortcode_atts(array(
'poststatus' => 'future',
'order' => 'DESC',
'showposts' => 10,
'ignore_sticky_posts' => 1
), $atts));
$return_string = '
- ';
- '.get_the_title().' ';
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 .= '
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]
Begin主题用户添加上述代码就更简单了,直接将方法一的代码放到增强文本小工具中即可,无需修改主题,效果如下图:
相关文章
- 王者荣耀侦探能力大测试攻略 王者荣耀侦探能力大测试怎么过 11-22
- 无期迷途主线前瞻兑换码是什么 11-22
- 原神欧洛伦怎么培养 11-22
- 炉石传说网易云音乐联动怎么玩 11-22
- 永劫无间手游确幸转盘怎么样 11-22
- 无期迷途主线前瞻兑换码是什么 无期迷途主线前瞻直播兑换码介绍 11-22