使用“分类文章”小部件自定义文章排序顺序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用“分类文章”小部件自定义文章排序顺序相关的知识,希望对你有一定的参考价值。

Edit widget or display current category in sidebar.php
  1. // Get array of post info.
  2. $cat_posts = new WP_Query("showposts=" . $instance["num"] . "&cat=" . $instance["cat"] . '&orderby=date&order=asc');
  3.  
  4. The Category Posts Widget is very good for showing a certain # of posts in a particular category using a widget that displays on every page. However, if you only want to show the posts for the current category in the sidebar, then add this code to your sidebar.php file:
  5.  
  6. <?php
  7. $sidebar_related_query = new WP_Query('cat=' . $sidebar_cat_id . '&showposts=5&offset=0&orderby=post_date&order=desc');
  8. while ($sidebar_related_query->have_posts()) : $sidebar_related_query->the_post();
  9. $do_not_duplicate = $post->ID;
  10. ?>
  11.  
  12. <div id=”post-<?php the_ID(); ?>">
  13. <a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
  14. </div>
  15.  
  16. <?php endwhile; ?>

以上是关于使用“分类文章”小部件自定义文章排序顺序的主要内容,如果未能解决你的问题,请参考以下文章

PHP 使用“类别帖子”小组件自定义后期排序顺序

在wordpress小部件中获取自定义文章类型

声纳自定义小部件

如何使用自定义项目小部件拖放 QListWidget 项目?

Android小部件,启动一个片段?

自定义小部件无法转换为自定义小部件