按特定类别的自定义字段排序
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.
<?php if (is_category('26')) { $posts = query_posts($query_string. '&orderby=meta_value&meta_key=date&order=DESC' ); } ?>
以上是关于按特定类别的自定义字段排序的主要内容,如果未能解决你的问题,请参考以下文章