作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个自定义帖子类型的产品,每个产品都属于一个产品类别。我正在尝试查询产品以获取按产品类别字母顺序排序的所有产品,即
First:
产品:Lion
类别:动物
最后:
产品:雪地摩托
类别:冬季
我正在为产品类别使用自定义字段,但我的查询不会按字母顺序对它们进行排序 - 而是按它们的发布日期进行排序。 Product_cat_meta 字段是自定义字段中设置的常规文本字段。查询在这里:
function get_products()
{
$args = array(
'post_type' => 'products',
'post_status' => 'publish',
'meta_key' => 'product_cat_meta',
'orderby' => 'meta_value',
'order' => 'ASC',
'posts_per_page' => -1
);
$products = new WP_Query($args);
if ($products->have_posts()) {
$index = 0;
while ($products->have_posts()) {
$products->the_post();
$prod_meta = get_field('product_cat_meta');
echo $prod_meta;
);
$index++;
} // end while
} // end if
}
此查询的结果只是按照在 WordPress 中设置的方式返回产品类别 - 首先是最新帖子,但不按字母顺序排序
最佳答案
您可以尝试将代码放在functions.php文件中。
如果您愿意,可以将代码放入当前主题的functions.php中:
function get_products()
{
$args = array(
'post_type' => 'products',
'post_status' => 'publish',
'meta_key' => 'product_cat_meta',
'orderby' => 'title',
'order' => 'ASC',
'posts_per_page' => -1
);
$products = new WP_Query($args);
if ($products->have_posts()) {
$index = 0;
while ($products->have_posts()) {
$products->the_post();
$prod_meta = get_field('product_cat_meta');
echo $prod_meta;
);
$index++;
} // end while
} // end if
}
获取更多详细信息,请点击链接:https://codex.wordpress.org/Alphabetizing_Posts
关于php - WordPress – 按元值按字母顺序对帖子进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53335041/
我是一名优秀的程序员,十分优秀!