0

有没有一种方法,默认情况下它会按最新的优先顺序显示我的帖子。假设他们正在寻找有关体育的博客文章,那么他们可以单击我将放置在页面一侧的选项,以允许他们显示所有体育博客文章。

我不知道这是由 wordpress 中的标签还是类别完成的。有没有可以帮助我做到这一点的插件?或者只是标准的php代码?

4

2 回答 2

0

您的模板文件中类似下面的内容将对其进行排序:

$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 } ?>
于 2013-01-03T15:14:49.980 回答
0

默认情况下,该功能在 wordpress 中有。

  1. 首先创建体育娱乐等类别。
  2. 创建您的帖子并在右侧选择它们所属的类别。
  3. 然后转到外观->菜单并将类别添加到您在主题中显示的菜单中。
  4. 如果你想把它添加到一边。然后小部件会有所帮助。
  5. 首先安装插件类别帖子 http://wordpress.org/extend/plugins/category-posts/ 转到外观->小部件并在所需的小部件中添加类别帖子。
于 2013-01-03T16:56:23.327 回答