Rename Taxonomies by WebMan

설명

This plugin allows you to customize any taxonomy labels with simple interface, no coding required. The customized taxonomies are only renamed, no registration keys are changed, so you won’t cause any taxonomy conflicts using this plugin.

Features

  • Easily rename any taxonomy (for example, rename “Categories” to “Topics”)
  • Renames custom taxonomies as well (added by 3rd party plugins)
  • Simple, intuitive user interface
  • No coding required
  • Translation ready
  • Multilingual plugins compatible

Plugin Localization

You can contribute your plugin translation directly to WordPress. Thank you!

Additional Resources

스크린샷

  • Taxonomies list
  • Editing a taxonomy labels
  • Customized taxonomy admin page (note the changed labels - taxonomy titles)
  • Setting up a customized taxonomy on post edit page (note the changed labels - taxonomy titles)

설치

  1. Unzip the plugin download file and upload rename-taxonomies folder into the /wp-content/plugins/ directory.
  2. Activate the plugin through the “Plugins” menu in WordPress.
  3. Rename taxonomies under Tools → Rename Taxonomies.

FAQ

How can I rename taxonomy labels?

Navigate to Tools → Rename Taxonomies in your WordPress dashboard. Then click the taxonomy you want to rename and fill the form fields displayed. That’s it.

(Note that you might need to refresh the WordPress dashboard once the form is saved to preview the changes.)

My taxonomies are renamed in admin but not in front-end of my website!

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.

Is this plugin translation ready?

Yes, the interface of the plugin is translation ready and you are perfectly fine to use it on single-language website.

For multilingual website please read below.

You can translate the plugin directly in WordPress repository. Thank you!

Does the plugin work with multilingual website (and plugins)?

If you are building a multilingual website and want to translate the customized taxonomy labels, this is possible using WPML or Polylang multilingual plugins.

Please note that if you have already customized your taxonomy labels, you need to re-save your customizations to register them for translation with the multilingual plugins.

Other solution would be to use WordPress multisite approach to build a multilingual website.

But there is no setting for `post_format`! How can I change that?

The plugin disables customization for certain WordPress native taxonomies. The list consists of link_category, nav_menu and post_format.

In case you want to edit this list, use a rename_taxonomies_skipped_keys filter hook via your theme or plugin code:

function my_prefix_rename_taxonomies_skipped_keys( $taxonomy_keys ) {
    return array(
        'link_category',
        'nav_menu',
        'post_format',
    );
}
add_filter( 'rename_taxonomies_skipped_keys', 'my_prefix_rename_taxonomies_skipped_keys' );

The custom taxonomies that have no edit UI will be skipped too.

후기

2018년 12월 2일 1 reply
Clear user interface, nice user experience and powerful functionality. Many thanks for this plugin!
2017년 2월 27일
It's interesting how such a well-crafted plugin can suddenly save a whole project. This is one of these cases, thank you very much.
모든 5 평가 읽기

기여자 & 개발자

“Rename Taxonomies by WebMan”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

“Rename Taxonomies by WebMan”(이)가 1(으)로 번역되었습니다. 기여해 주셔서 번역자님께 감사드립니다.

자국어로 “Rename Taxonomies by WebMan”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

Please see the changelog.md file for details.