WordPress由custum字段排序,按自定义字段排序列表

时间:2017-03-09 06:56:31

标签: php jquery mysql wordpress sorting

我使用此代码显示按“postnr”排序的列表,postnr是自定义字段。

$config = [
    "s" => $_GET["s"],
    "order" => "ASC",
    "orderby" => "postnr"
];

如何在WordPress中对自定义字段“postnr”列出orderby进行排序。

1 个答案:

答案 0 :(得分:0)

您必须使用Bad Request (#400)并将CriteriaBuilder qb = entityManager.getCriteriaBuilder(); CriteriaQuery<Long> cq = qb.createQuery(Long.class); cq.select(qb.count(cq.from(YourEntity.class))); cq.where(/*your stuff*/); return entityManager.createQuery(cq).getSingleResult(); 定义为'orderby' => 'meta_value'

以下是代码:

meta_key

参考:: Order & Orderby Parameters

希望这有帮助!