按特定类别的自定义字段排序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了按特定类别的自定义字段排序相关的知识,希望对你有一定的参考价值。

Put this before the loop in archive.php to have posts in the archive for category '26' sorted by custom field 'date'.
Assign sortable values like '090501' or '2009-05-01' to those fields when editing posts and your Upcoming Events will be sorted by the future date at which they will take place.
  1. <?php if (is_category('26')) { $posts = query_posts($query_string. '&orderby=meta_value&meta_key=date&order=DESC' ); } ?>

以上是关于按特定类别的自定义字段排序的主要内容,如果未能解决你的问题,请参考以下文章

通过特定的自定义字段订购 WP 查询,不起作用

DataTable:td内日期的自定义排序

按关系字段 (ACF) 的 Elementor 帖子的自定义查询过滤器

如何在具有帖子类型的自定义页面上显示所有图像字段

从 WP_Query 中排除特定条款

如何获取在 Wordpress 中按类别过滤的自定义帖子类型的永久链接?