如何手动更改 WordPress 帖子上自定义分类的出现顺序?

问题描述 投票:0回答:1

我为每篇文章的作者都有一个自定义分类法,它基本上是一个出版物和资源库。我已经使用“get_the_terms”来显示它们并且它工作得很好!但是我不知道如何手动更改它们出现的顺序。我知道你可以按 ASC、DESC、ID 等进行“顺序”数组,并且不按我们需要的特定顺序显示。

例如,假设我们有约翰、莎莉和阿曼达 - 我想让莎莉先走,因为她是帖子的主要作者,然后是约翰,然后是阿曼达。作者的顺序会随着每篇文章的变化而变化,所以如果我可以在后端手动排序它们并在前端输入它们时显示,那就更容易了。

请参阅下面我如何注册分类法 - 我是否遗漏了什么?侧边栏输入会自动将其更改为字母顺序。

有人有什么想法吗?非常感谢。

function wporg_register_taxonomy_authors() {
    $labels = array(
        'name' => _x('Authors', 'taxonomy general name'),
        'singular_name' => _x('Author', 'taxonomy singular name'),
        'search_items' => __('Search Authors'),
        'all_items' => __('All Authors'),
        'parent_item' => __('Parent Authors'),
        'parent_item_colon' => __('Parent Author:'),
        'edit_item' => __('Edit Author'),
        'update_item' => __('Update Author'),
        'add_new_item' => __('Add New Author'),
        'new_item_name' => __('New Author Name'),
        'menu_name' => __('Authors'),
    );
    $args = array(
        'labels' => $labels,
        'show_ui' => true,
        'public' => true,
        'show_in_rest' => true,
        'show_admin_column' => true,
        'query_var' => true,
        // 'hierarchical' => true,
        'rewrite' => ['slug' => 'author'],
    );
    register_taxonomy('authors', ['post'], $args);
}
add_action('init', 'wporg_register_taxonomy_authors');

这就是我在前端显示它们的方式。

<? $terms = get_the_terms($post->ID, 'authors');
foreach ($terms as $term) {
    echo '<p class="author">' . __($term->name) . '<span>,</span></p>';
}
?>
wordpress custom-taxonomy
1个回答
0
投票

您可以使用

WP_Term_Query
按特定顺序查询术语。

$terms_query = new WP_Term_Query(array(
    'taxonomy' => 'authors',
    'orderby'  => 'slug__in',
    'slug'     => array(
        'sally',
        'john',
        'amanda
    )
));
© www.soinside.com 2019 - 2024. All rights reserved.