Descrição
We consider Reorder Terms a developer tool. If you do not know what menu_order
or custom queries are, then this plugin is likely not for you. This is an add-on to Reorder Posts and requires Reorder Posts 2.1.0 or greater.
Reorder Terms takes a different approach to term reordering. Instead of modifying core tables to achieve reordering, we do it using term meta per post type.
With the ability to add taxonomies to multiple post types, this method allows you to reorder terms within each post type attached to the same taxonomy.
This plugin treats terms like pages. Each term in a hierarchy has a term order. This allows quick reordering and deep traversing to get the exact terms and order you prefer.
As a result, you can get reordered terms with a query such as:
$query = array(
'orderby' => 'meta_value_num',
'order' => 'ASC',
'meta_query' => array(
'relation' => 'OR',
array(
'key' => 'post_order',
'compare' => 'NOT EXISTS'
),
array(
'key' => 'post_order',
'value' => 0,
'compare' => '>='
)
),
'hide_empty' => true,
'parent' => 0
);
$terms = get_terms( 'post_format', $query );
echo '<ul>';
foreach( $terms as $term ) {
printf( '<li>%s</li>', esc_html( $term->name ) );
}
echo '</ul>';
While admittedly the query isn’t exactly poetry, it’s efficient, and insanely flexible.
Features
Spread the Word
If you like this plugin, please help spread the word. Rate the plugin. Write about the plugin. Something 🙂
Development
Development happens on GitHub.
You are welcome to help us out and contribute on GitHub.
Ecrãs
Instalação
Either install the plugin via the WordPress admin panel, or …
- Upload
reorder-terms
to the/wp-content/plugins/
directory. - Activate the plugin through the ‘Plugins’ menu in WordPress.
This plugin requires Reorder Posts 2.1.0 or greater.
Please note that this plugin does not change the order of items in the front-end. This functionality is not core WordPress functionality, so it’ll require some work on your end to get the posts to display in your theme correctly.
Perguntas frequentes
Ask your questions here!
Avaliações
Contribuidores e programadores
“Reorder Terms” é software de código aberto. As seguintes pessoas contribuíram para este plugin:
Contribuidores“Reorder Terms” foi traduzido para 1 locale. Obrigado aos tradutores pelas suas contribuições.
Traduza o “Reorder Terms” para o seu idioma.
Interessado no desenvolvimento?
Consulte o código, consulte o repositório SVN, ou subscreva o registo de alterações por RSS.
Registo de alterações
1.1.1
- Released 2019-02-16
- Added term helper query in the back-end
1.1.0
- Re-release
1.0.0
- Initial release.