如果为新文章设置了定时发布,是否想在显著的位置放个提示,告诉读者马上将会有什么文章发布,可能会帮助你的博客获得更多的关注,这里有两种方法可以实现上述功能。
方法一:将下面代码添加到主题模板适当的位置即可。
<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]
主题用户添加上述代码就更简单了,直接将方法一的代码放到增强文本小工具中即可,无需修改主题,效果如下图:
© 版权声明
1. 资源都是经过站长或作者收集测试修改后发布分享。如若转载请在文内以超链形式注明狐狸库文章出处,谢谢合作!
2. 本站除原创内容,其余所有内容均收集自互联网,仅限用于学习和研究目的,本站不对其内容的合法性承担任何责任。如有版权内容,请通知我们或作者删除,其版权均归原作者所有,本站虽力求保存原有版权信息,但因众多资源经多次转载,已无法确定其真实来源,或已将原有信息丢失,所以敬请原作者谅解!
3. 本站用户所发布的一切资源内容不代表本站立场,并不代表本站赞同其观点和对其真实性负责,若您对本站所载资源作品版权归属存有异议,请留言附说明联系邮箱,我们将在第一时间予以处理 ,同时向您表示歉意!为尊重作者版权,请购买原版作品,支持您喜欢的作者,谢谢!
4. 本站一律禁止以任何方式发布或转载任何违法的相关信息,访客如有发现请立即向站长举报;本站资源文件大多存储在云盘,如发现链接或图片失效,请联系作者或站长及时更新。
THE END
请登录后查看评论内容