有没有一种方法,默认情况下它会按最新的优先顺序显示我的帖子。假设他们正在寻找有关体育的博客文章,那么他们可以单击我将放置在页面一侧的选项,以允许他们显示所有体育博客文章。
我不知道这是由 wordpress 中的标签还是类别完成的。有没有可以帮助我做到这一点的插件?或者只是标准的php代码?
您的模板文件中类似下面的内容将对其进行排序:
$args=array(
'orderby' => 'post_date',
'order' => 'DESC'
);
WP Codex 上的优秀参考指南 - http://codex.wordpress.org/Function_Reference/query_posts
所以:-
<?php
$args=array(
'orderby' => 'post_date',
'order' => 'DESC',
);
$recent_posts = get_posts($args);
foreach( $recent_posts as $recent ){
?>
<?php
$mypages = get_post( $recent->ID );
$name = $mypages->post_name;
$content = $mypages->post_content;
?>
<?php if(has_post_thumbnail()) : ?>
<div class="thumb">
<?php the_post_thumbnail(); ?>
</div>
<?php else : ?>
<div class="thumb">
<img src="aDefaultImage.jpg" />
</div>
<?php endif; ?>
<p><?php the_date('jS F Y','<span class="date">','</span><br />'); ?>
<?php echo $content; ?></p>
<?php } ?>
默认情况下,该功能在 wordpress 中有。