Terms Block

Description

Term list block. Displays a list of all terms in the selected taxonomy.

You can change the display by placing a template file in your theme.

  1. template-parts/blocks/terms-block/terms-block-block-style.php
  2. template-parts/blocks/terms-block/terms-block.php

Filter for get_terms.

add_filter( 'terms_block_get_terms_arguments', 'my_filter', 10, 3 );
function my_filter( $args, $taxonomy, $attributes ) {
    $args = array_merge( $args, array( 'orderby' => 'order' ) );

    return $args;
}

Blocks

This plugin provides 1 block.

  • Terms Displays a list of all terms in the selected taxonomy.

Reviews

There are no reviews for this plugin.

Contributors & Developers

“Terms Block” is open source software. The following people have contributed to this plugin.

Contributors

Translate “Terms Block” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Changelog

1.0.0

  • Tested on WordPress 5.8.

0.2.0

  • Add terms_block_get_terms_arguments filter.
  • Tested on WordPress 5.6.

0.0.5

  • First release.

0.0.1

  • Internal release.