分类页面中的随机邮购

时间:2014-11-25 作者:Filippo

我有一个Worpdress博客,我想在所有分类页面中随机显示帖子。

例如,当我来到这里http://www.iltrentinodeibambini.it/category/rubriche/lo-sai-che/ 我想看到文章随机排序,而不是按日期排序。

我试图找到一个插件,可以帮助我,但我没有找到任何东西。我该怎么办?在我的“page.PHP”文件中,是否有任何PHP代码可以放在循环之前?

我在WP 4.0中使用宝座主题(http://themeforest.net/item/throne-personal-blogmagazine-wordpress-theme/8134834).

谢谢菲利波

1 个回复
SO网友:Parth Kumar

您可以在类别中使用以下代码行。php文件,用于随机发布。

<ul>
 <?php $posts = get_posts(\'orderby=rand&numberposts=5\'); 
    foreach($posts as $post) { ?>
     <li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php  the_title(); ?></a>
     </li>
<?php } ?>
</ul>
</li>

结束

相关推荐

Show Pages in Categories

通过将此代码添加到函数中,我创建了category函数。php:function page_category() { register_taxonomy_for_object_type(\'category\', \'page\'); } // Add to the admin_init hook of your theme functions.php file add_action( \'init\', \'page_category\' ); 但问