Descrizione
This plugin create a custom post type “Taoxnomy Page” which related to a term.
How It Works
Taxonomy Page will override the 1st page of term archive. You can choose which taxonomy to have a Taxonomy Page.
For example:
- You have decided “category” to have Taxonomy Page.
- Create a Taxonomy Page “Book” for category “Book”.
- Edit the Taxonomy Page in block editor and publish it.
- Now the 1st page of “Book” category
/category/book
will dipslay the contents of the Taxonomy Page “Book”.
Template Structure
You can choose a template for the taxonomy page in editor,
but you can put singular-taxonomy-page.php
template in your theme and there’s no need to choose.
Below is the default template priority.
- singular-taxonomy-page.php
- page.php
- singular.php
- single.php
- index.php
Filter hook rich_taxonomy_include_template
is also available.
Customization
Archive Block
Archive blocks has tempalte structure like below.
template-parts - rich-taxonomy - archive-block-loop.php // Loop of post list. - archive-block-more.php // Link button. - archive-block-toggle.php // Toggle button. - archive-block-wrapper.php // Wrapper of archive.
If theme has files in same path, that pirors.
Copy the file and customize as you like.
Styles
To override styles, 4 hooks are available.
rich_taxonomy_block_asset_style
rich_taxonomy_block_asset_editor_style
rich_taxonomy_block_asset_script
rich_taxonomy_block_asset_editor_script
To change looks & feels, rich_taxonomy_block_asset_style
is the best start point.
// 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/arcvhie-block' === $block_name ) { $handle = 'my-archive-block'; } return $handle; }, 10, 2 );
This style is loaded in both public and editor.
Default Contents
To define default contents of the taxonomy page, use rich_taxonomy_default_post_object
filter hook.
/** * Fitler 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, $contest ) { // 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 );
FAQ
-
Where can I get supported?
-
Please create new ticket on support forum.
-
How can I contribute?
-
Create a new issue or send pull requests.
Recensioni
Non ci sono recensioni per questo plugin.
Contributi e sviluppo
“Rich Taxonomy” è un software open source. Le persone che hanno contribuito allo sviluppo di questo plugin sono indicate di seguito.
CollaboratoriTraduci “Rich Taxonomy” nella tua lingua.
Ti interessa lo sviluppo?
Esplora il Codice segui il Repository SVN iscriviti al Log delle Modifiche. Puoi farlo tramite RSS con un lettore di feed.
Changelog (registro delle modifiche)
1.0.9
- Fix bug in template selector in taxonomy page editor.
1.0.0
- First release.