Changeset 3415529
- Timestamp:
- 12/09/2025 02:36:07 PM (5 days ago)
- Location:
- rename-taxonomies
- Files:
-
- 21 added
- 1 edited
-
tags/1.3.0 (added)
-
tags/1.3.0/assets (added)
-
tags/1.3.0/assets/css (added)
-
tags/1.3.0/assets/css/style.css (added)
-
tags/1.3.0/assets/scss (added)
-
tags/1.3.0/assets/scss/_base.scss (added)
-
tags/1.3.0/assets/scss/_edit.scss (added)
-
tags/1.3.0/assets/scss/_list.scss (added)
-
tags/1.3.0/assets/scss/style.scss (added)
-
tags/1.3.0/changelog.md (added)
-
tags/1.3.0/includes (added)
-
tags/1.3.0/includes/class-list-table.php (added)
-
tags/1.3.0/includes/labels.php (added)
-
tags/1.3.0/languages (added)
-
tags/1.3.0/languages/rename-taxonomies.pot (added)
-
tags/1.3.0/license.txt (added)
-
tags/1.3.0/readme.txt (added)
-
tags/1.3.0/rename-taxonomies.php (added)
-
tags/1.3.0/templates (added)
-
tags/1.3.0/templates/edit.php (added)
-
tags/1.3.0/templates/list.php (added)
-
trunk/readme.txt (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rename-taxonomies/trunk/readme.txt
r3162335 r3415529 6 6 Plugin URI: https://www.webmandesign.eu/portfolio/rename-taxonomies-wordpress-plugin/ 7 7 Requires at least: 6.0 8 Tested up to: 6. 78 Tested up to: 6.9 9 9 Requires PHP: 7.0 10 Stable tag: 1. 2.110 Stable tag: 1.3.0 11 11 License: GPL-3.0-or-later 12 12 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 37 37 * [Write a review](https://wordpress.org/support/plugin/rename-taxonomies/reviews/#postform) 38 38 * [Have a question?](https://wordpress.org/support/plugin/rename-taxonomies/) 39 * [Get a freetheme](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/) 41 41 * [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) 43 43 44 44 … … 60 60 = My taxonomies are renamed in admin but not in front-end of my website! = 61 61 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. 62 Well, this is most likely caused by your theme (or a plugin) hard-coding the taxonomy names on the front-end. 63 64 Please 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. 63 65 64 66 = Is this plugin translation ready? = 65 67 66 Yes, the interface of the plugin is translation ready and you are perfectly fine to use it on single-language website.68 Yes, the interface of the plugin is translation ready and you are perfectly fine to use it on a single-language website. 67 69 68 For multilingual website please read below .70 For multilingual website please read below (the other FAQ question). 69 71 70 72 You can [translate the plugin](https://translate.wordpress.org/projects/wp-plugins/rename-taxonomies/) directly in WordPress repository. Thank you! … … 80 82 = But there is no setting for `post_format`! How can I change that? = 81 83 82 The plugin disables customization for certain WordPress native taxonomies. The list consists of ` link_category`, `nav_menu` and `post_format`.84 The 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`. 83 85 84 In case you want to edit this list, use a `rename_taxonomies_skipped_keys` filter hook via your theme or plugincode:86 In case you want to edit this list, use a `rename_taxonomies_skipped_keys` filter hook via your (child) theme or plugin PHP code: 85 87 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 ) { 94 89 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 95 The taxonomies that have no admin edit UI will be skipped too. 96 96 97 97 … … 111 111 == Upgrade Notice == 112 112 113 = 1. 2.0 =114 Updating array of labels to set.113 = 1.3.0 = 114 Fixing bugs and improving code.
Note: See TracChangeset
for help on using the changeset viewer.