通过PHP按定制字段(由Pod创建)订购定制帖子类型 时间:2021-09-28 作者:neisor 我有以下PHP代码:$posts = get_posts([ \'post_type\' => \'clen\', \'post_status\' => \'publish\', \'numberposts\' => -1, \'orderby\' => \'funkcia\', \'order\' => \'DESC\' ]); 但是,此代码不会对帖子进行排序funkcia 完全是场上的。请问我的代码怎么了?非常感谢。 1 个回复 SO网友:neisor 我用以下代码修复了它:$posts = get_posts([ \'post_type\' => \'clen\', \'post_status\' => \'publish\', \'numberposts\' => -1, \'meta_key\' => \'funkcia\', \'orderby\' => \'meta_value\', \'order\' => \'ASC\' ]); 此代码段按字段对获取的帖子进行排序funkcia. 文章导航