Title: Rich Taxonomy
Author: TAROSKY INC.
Published: <strong>17. studenoga 2021.</strong>
Last modified: 08. srpnja 2026.

---

Pretraga dodataka

![](https://ps.w.org/rich-taxonomy/assets/banner-772x250.jpg?rev=3599697)

![](https://ps.w.org/rich-taxonomy/assets/icon.svg?rev=3599697)

# Rich Taxonomy

 Od [TAROSKY INC.](https://profiles.wordpress.org/tarosky/)

[Preuzmi](https://downloads.wordpress.org/plugin/rich-taxonomy.1.3.0.zip)

 * [Detalji](https://hr.wordpress.org/plugins/rich-taxonomy/#description)
 * [Recenzije](https://hr.wordpress.org/plugins/rich-taxonomy/#reviews)
 *  [Instalacija](https://hr.wordpress.org/plugins/rich-taxonomy/#installation)
 * [Razvoj](https://hr.wordpress.org/plugins/rich-taxonomy/#developers)

 [Podrška](https://wordpress.org/support/plugin/rich-taxonomy/)

## Opis

> **Note:** This plugin works with both **classic themes** and **block themes** 
> that support Full Site Editing (FSE).

 * Replace term archive pages with custom Taxonomy Pages (CPT).
 * Use the block editor to design archive landing pages.
 * Includes a **Taxonomy Archive Block** to display posts.
 * Fully customizable via templates and filter hooks.

#### Use Cases

**Topic clusters & pillar pages (SEO).** Turn a category or tag archive into a _pillar
page_ that introduces the topic and links out to its individual posts (the _cluster
content_). This is the topic-cluster model used in modern SEO: one authoritative
hub page that consolidates internal links and signals topical authority — instead
of a bare, auto-generated list of post titles.

**Category & taxonomy landing pages.** Give any taxonomy term a fully designed landing
page — hero, introduction, curated blocks — while still automatically listing the
posts assigned to that term. Ideal for product categories, service areas, or editorial
sections.

**Content hubs.** Build a curated hub for a series, event, or campaign: write an
editorial introduction in the block editor, then let the Taxonomy Archive Block 
surface the latest related posts automatically.

#### How It Works

The Taxonomy Page will override the **first page** of a term archive. In **Settings**
you can choose which taxonomies should have the option to create a Taxonomy Page.

For example, to create a Taxonomy Page for the _News_ category:

 1. In **Settings  Reading** select `Category`.
 2. Go to **Posts  Categories**, hover over “News” and click **Taxonomy Page**.
 3. Edit the Taxonomy Page in the block editor and publish it.
 4. View the page at `/category/news` (assuming your permalink structure is set to “
    Post name”).

#### Taxonomy Archive Block

When editing a Taxonomy Page in the block editor, you also have access to the Taxonomy
Archive Block. This block displays an overview of every post in the term archive.
A number of options allow you to alter its behavior:

 * **Number of Posts**
    Sets the maximum number of posts displayed in the overview.
 * **Toggle Button Text**
    Sets the text for the toggle button. This button appears
   when the total number of posts exceeds the number set in “Number of Posts”.
 * **Archive Button Text**
    Sets the text for the archive button. This button links
   to the second page of the term archive. It will be displayed when the amount 
   of posts exceeds `Blog pages show at most` in **Settings  Reading**.

#### Template Structure

You can choose a template for the Taxonomy Page in the block editor. Alternatively,
you can create your own template, by adding `singular-taxonomy-page.php` to your
theme’s templates, or using the filter hook `rich_taxonomy_include_template`.

The default template hierarchy, from highest to lowest priority, is as follows:

 1. `singular-taxonomy-page.php`
 2. `page.php`
 3. `single.php`
 4. `singular.php`
 5. `index.php`

#### Customization

Template Override: Taxonomy Archive Block

To override the layout of the Taxonomy Archive Block, copy these files into your
theme under:

    ```
    template-parts/rich-taxonomy/
    ```

Files:

 * `archive-block-loop.php` – Loop of post list
 * `archive-block-more.php` – Archive button
 * `archive-block-toggle.php` – Toggle button
 * `archive-block-wrapper.php` – Wrapper of archive
 * Styles and Scripts

You can override the plugin’s styles and scripts using these hooks:

 1. `rich_taxonomy_block_asset_style`
 2. `rich_taxonomy_block_asset_editor_style`
 3. `rich_taxonomy_block_asset_script`
 4. `rich_taxonomy_block_asset_editor_script`

To change the look & feel, `rich_taxonomy_block_asset_style` is the best starting
point.

Example: Override Style

    ```
    // Register style.
    add_action( 'init', function() {
        wp_register_style( 'my-archive-block', $url, $deps, $version );
    } );

    // Override handle.
    add_filter( 'rich_taxonomy_block_asset_style', function( $handle, $block_name ) {
        if ( 'rich-taxonomy/archive-block' === $block_name ) {
            $handle = 'my-archive-block';
        }
        return $handle;
    }, 10, 2 );
    ```

> This style will load on both the front-end and block editor.

Default Contents

To define the default content of the Taxonomy Page, use the `rich_taxonomy_default_post_object`
filter hook.

Example: Define Default Content

    ```
    /**
     * Filter default post object.
     *
     * @param array   $args    Post object passed to wp_insert_post().
     * @param WP_Term $term    Term object assigned to this post.
     * @param string  $context Currently only 'api' is supported.
     */ 
    add_filter( 'rich_taxonomy_default_post_object', function( $args, $term, $context ) {
        // If specific taxonomy, enter default content.
        if ( 'category' === $term->taxonomy ) {
            // Post body.
            $args['post_content'] = 'Here comes default content.';
            // Publish immediately.
            $args['post_status']  = 'publish';
        }
        return $args;
    }, 10, 3 );
    ```

## Snimke zaslona

[⌊Edit a Taxonomy Page in the block editor, including the Taxonomy Archive Block
and its settings.⌉⌊Edit a Taxonomy Page in the block editor, including the Taxonomy
Archive Block and its settings.⌉[

Edit a Taxonomy Page in the block editor, including the Taxonomy Archive Block and
its settings.

[⌊The Taxonomy Page shown on the front end in place of the term archive.⌉⌊The Taxonomy
Page shown on the front end in place of the term archive.⌉[

The Taxonomy Page shown on the front end in place of the term archive.

[⌊Create a Taxonomy Page directly from the term list (Posts <span aria-hidden=⌉⌊Create a Taxonomy Page directly from the term list (Posts <span aria-hidden=⌉→ Categories).” class=”wp-image-9000003″ srcset=”https://i0.wp.com/ps.w.org/rich-taxonomy/assets/screenshot-3.png?rev=3599697&w=300 300w, https://i0.wp.com/ps.w.org/rich-taxonomy/assets/screenshot-3.png?rev=3599697&w=600 600w, https://i0.wp.com/ps.w.org/rich-taxonomy/assets/screenshot-3.png?rev=3599697&w=900 900w” sizes=”(max-width: 599px) 50vw, 33vw” width=”1184″ height=”465″ loading=”eager” fetchpriority=”high” decoding=”async”/>](https://ps.w.org/rich-taxonomy/assets/screenshot-3.png?rev=3599697)

Create a Taxonomy Page directly from the term list (Posts  Categories).

## Instalacija

#### From Plugin Directory

 1. Install and activate the plugin.
 2. Go to **Settings  Reading** and select the taxonomies to enable.

#### From GitHub

Download from the [Releases page](https://github.com/tarosky/rich-taxonomy/releases).

## ČPP

### Where can I get support?

Please create a new ticket on the support forum.

### How can I contribute?

Create a new [issue](https://github.com/tarosky/rich-taxonomy/issues) or send [pull requests](https://github.com/tarosky/rich-taxonomy/pulls).

## Recenzije

Nema recenzija za ovaj dodatak.

## Suradnici i Programeri

“Rich Taxonomy” je softver otvorenog koda. Sljedeće osobe su doprinijele ovom dodatku.

Suradnici

 *   [ TAROSKY INC. ](https://profiles.wordpress.org/tarosky/)
 *   [ Fumiki Takahashi ](https://profiles.wordpress.org/takahashi_fumiki/)
 *   [ megane9988 ](https://profiles.wordpress.org/megane9988/)
 *   [ Mark Walters ](https://profiles.wordpress.org/tswallie/)

“Rich Taxonomy” je preveden na 1 jezik. Zahvala [prevoditeljima](https://translate.wordpress.org/projects/wp-plugins/rich-taxonomy/contributors)
za njihov doprinos.

[Prevedite “Rich Taxonomy” na svoj jezik.](https://translate.wordpress.org/projects/wp-plugins/rich-taxonomy)

### Zainteresirani ste za razvoj?

[Pregledajte kôd](https://plugins.trac.wordpress.org/browser/rich-taxonomy/), pogledajte
[SVN spremište](https://plugins.svn.wordpress.org/rich-taxonomy/)ili se pretplatite
na [dnevnik razvoja](https://plugins.trac.wordpress.org/log/rich-taxonomy/) od [RSS](https://plugins.trac.wordpress.org/log/rich-taxonomy/?limit=100&mode=stop_on_copy&format=rss).

## Dnevnik promjena

#### 1.3.0

 * Add support for creating a Taxonomy Page for a taxonomy’s base URL (the whole
   archive), in addition to individual terms.
 * Raise minimum requirements to PHP 8.1 and WordPress 6.6.
 * Confirm compatibility with WordPress 7.0.
 * Update the plugin icon.

#### 1.2.1

 * Update Node.js version to 20 in release workflow.

#### 1.2.0

 * Add block theme (FSE) support for template override.
 * Fix template override when `single.php` exists in classic themes.
 * Fix layout of the sync information notice.
 * Replace Gulp build system with npm scripts and `@kunoichi/grab-deps`.

#### 1.1.8

 * Add pagination to the broken page warning.
 * Add notices to improve UX.
 * Bugfix: handle missing taxonomy and null term.

#### 1.1.7

 * Enhancement for instructions.
 * Bugfix: remove warning on non-taxonomy pages.

#### 1.1.2

 * Fix bug on template selector.

#### 1.1.1

 * Fix a bug that breaks the block widgets screen.
 * Update README for clearance of installation. props [@megane9988](https://profiles.wordpress.org/megane9988/)

#### 1.1.0

 * Fix the bug for block disappearing.

#### 1.0.9

 * Fix a bug in the template selector in the taxonomy page editor.

#### 1.0.0

 * First release.

## Meta

 *  Version **1.3.0**
 *  Zadnje ažuriranje **prije 1 tjedan**
 *  Aktivnih instalacija **10+**
 *  WordPress inačica ** 6.6 ili viša **
 *  Testirano do **7.0.2**
 *  PHP inačica ** 8.1 ili viša **
 *  Jezici
 * [English (US)](https://wordpress.org/plugins/rich-taxonomy/) i [Japanese](https://ja.wordpress.org/plugins/rich-taxonomy/).
 *  [Prevedite na vaš jezik](https://translate.wordpress.org/projects/wp-plugins/rich-taxonomy)
 * Oznake
 * [category](https://hr.wordpress.org/plugins/tags/category/)[landing page](https://hr.wordpress.org/plugins/tags/landing-page/)
   [seo](https://hr.wordpress.org/plugins/tags/seo/)[topic cluster](https://hr.wordpress.org/plugins/tags/topic-cluster/)
 *  [Napredni pogled](https://hr.wordpress.org/plugins/rich-taxonomy/advanced/)

## Ocjena

No reviews have been submitted yet.

[Your review](https://wordpress.org/support/plugin/rich-taxonomy/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/rich-taxonomy/reviews/)

## Suradnici

 *   [ TAROSKY INC. ](https://profiles.wordpress.org/tarosky/)
 *   [ Fumiki Takahashi ](https://profiles.wordpress.org/takahashi_fumiki/)
 *   [ megane9988 ](https://profiles.wordpress.org/megane9988/)
 *   [ Mark Walters ](https://profiles.wordpress.org/tswallie/)

## Podrška

Želite nešto reći? Potrebna vam je pomoć?

 [Pregledaj forum za podršku](https://wordpress.org/support/plugin/rich-taxonomy/)