Plugin Directory

Changeset 3415529


Ignore:
Timestamp:
12/09/2025 02:36:07 PM (5 days ago)
Author:
webmandesign
Message:

Update 1.3.0

Location:
rename-taxonomies
Files:
21 added
1 edited

Legend:

Unmodified
Added
Removed
  • rename-taxonomies/trunk/readme.txt

    r3162335 r3415529  
    66Plugin URI:        https://www.webmandesign.eu/portfolio/rename-taxonomies-wordpress-plugin/
    77Requires at least: 6.0
    8 Tested up to:      6.7
     8Tested up to:      6.9
    99Requires PHP:      7.0
    10 Stable tag:        1.2.1
     10Stable tag:        1.3.0
    1111License:           GPL-3.0-or-later
    1212License URI:       https://www.gnu.org/licenses/gpl-3.0.html
     
    3737* [Write a review](https://wordpress.org/support/plugin/rename-taxonomies/reviews/#postform)
    3838* [Have a question?](https://wordpress.org/support/plugin/rename-taxonomies/)
    39 * [Get a free theme](https://www.webmandesign.eu/project-tag/free-wordpress-theme/)
    40 * [Follow @webmandesigneu @ Twitter](https://twitter.com/webmandesigneu/)
     39* [Get an accessibility ready WordPress theme](https://www.webmandesign.eu/project-tag/free-wordpress-theme/)
     40* [Follow @webmandesigneu @ X/Twitter](https://x.com/webmandesigneu/)
    4141* [Follow @webmandesigneu @ Facebook](https://www.facebook.com/webmandesigneu/)
    42 * [Visit WebMan Design](https://www.webmandesign.eu)
     42* [Visit WebMan Design website](https://www.webmandesign.eu)
    4343
    4444
     
    6060= My taxonomies are renamed in admin but not in front-end of my website! =
    6161
    62 Well, this is most likely caused by your theme (or a plugin) hard-coding the taxonomy name. Please contact your theme (or a plugin) developer to update their code and use WordPress taxonomy labels instead of hard-coding them.
     62Well, this is most likely caused by your theme (or a plugin) hard-coding the taxonomy names on the front-end.
     63
     64Please contact your theme (or plugin) developer to update their code and use [WordPress taxonomy labels](https://developer.wordpress.org/reference/functions/get_taxonomy_labels/) instead of hard-coding them.
    6365
    6466= Is this plugin translation ready? =
    6567
    66 Yes, the interface of the plugin is translation ready and you are perfectly fine to use it on single-language website.
     68Yes, the interface of the plugin is translation ready and you are perfectly fine to use it on a single-language website.
    6769
    68 For multilingual website please read below.
     70For multilingual website please read below (the other FAQ question).
    6971
    7072You can [translate the plugin](https://translate.wordpress.org/projects/wp-plugins/rename-taxonomies/) directly in WordPress repository. Thank you!
     
    8082= But there is no setting for `post_format`! How can I change that? =
    8183
    82 The plugin disables customization for certain WordPress native taxonomies. The list consists of `link_category`, `nav_menu` and `post_format`.
     84The plugin disables customization for certain WordPress native taxonomies. The list consists of `nav_menu`, `link_category`, `post_format`, `wp_theme`, `wp_template_part_area`, and `wp_pattern_category`.
    8385
    84 In case you want to edit this list, use a `rename_taxonomies_skipped_keys` filter hook via your theme or plugin code:
     86In case you want to edit this list, use a `rename_taxonomies_skipped_keys` filter hook via your (child) theme or plugin PHP code:
    8587
    86 `function my_prefix_rename_taxonomies_skipped_keys( $taxonomy_keys ) {
    87     return array(
    88         'link_category',
    89         'nav_menu',
    90         'post_format',
    91     );
    92 }
    93 add_filter( 'rename_taxonomies_skipped_keys', 'my_prefix_rename_taxonomies_skipped_keys' );`
     88`add_filter( 'rename_taxonomies_skipped_keys', function( $taxonomy_keys ) {
    9489
    95 The custom taxonomies that have no edit UI will be skipped too.
     90    unset( $taxonomy_keys['post_format'] );
     91
     92    return $taxonomy_keys;
     93} );`
     94
     95The taxonomies that have no admin edit UI will be skipped too.
    9696
    9797
     
    111111== Upgrade Notice ==
    112112
    113 = 1.2.0 =
    114 Updating array of labels to set.
     113= 1.3.0 =
     114Fixing bugs and improving code.
Note: See TracChangeset for help on using the changeset viewer.