TaxoFilter Admin

설명

TaxoFilter Admin enhances the WordPress admin experience by providing customizable taxonomy filters for all post types.

The plugin is open source and hosted on GitHub. If you have any issues or feedback, please open an issue there.

Key Features:

  • Automatically adds taxonomy dropdowns to post list screens
  • Works with posts, pages, and custom post types
  • Allows administrators to select which taxonomy filters to display via screen options
  • Clean, developer-friendly code

스크린샷

설치

  1. Upload the taxofilter-admin folder to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Visit any post list screen and use the screen options to configure which taxonomy filters to display

FAQ

Will this work with custom post types?

Yes, the plugin automatically detects all registered post types and their associated taxonomies.

Can I select which taxonomy filters to display?

Yes, you can customize which taxonomy filters appear by accessing the Screen Options panel at the top of any post list screen.

How can I exclude certain taxonomies from the screen options?

You can use the taxofilter_admin_excluded_taxonomies filter to exclude specific taxonomies from showing up in the screen options for a post type.

Example usage:

add_filter('taxofilter_admin_excluded_taxonomies', function($excluded, $post_type) {
    if ($post_type === 'custom_post_type') {
        $excluded[] = 'custom_taxonomy';
    }
    return $excluded;
}, 10, 2);

후기

모든 1 평가 읽기

기여자 & 개발자

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

기여자

자국어로 “TaxoFilter Admin”(을)를 번역하세요.

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

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

변경이력

1.0.1

  • TWEAK: Added taxofilter_admin_excluded_taxonomies filter to allow excluding specific taxonomies from the screen options.

1.0.0

  • Initial release