Created
July 25, 2017 04:45
-
-
Save qwersk/c0d211a257f0d95cde163b3500ec8b02 to your computer and use it in GitHub Desktop.
ADD FILTER BY CATEGORY IN ADMIN AREA #WORDPRESS #WP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function pippin_add_taxonomy_filters() { | |
global $typenow; | |
// an array of all the taxonomyies you want to display. Use the taxonomy name or slug | |
$taxonomies = array('course_category'); | |
// must set this to the post type you want the filter(s) displayed on | |
if( $typenow == 'course' ){ | |
foreach ($taxonomies as $tax_slug) { | |
$tax_obj = get_taxonomy($tax_slug); | |
$tax_name = $tax_obj->labels->name; | |
$terms = get_terms($tax_slug); | |
if(count($terms) > 0) { | |
echo "<select name='$tax_slug' id='$tax_slug' class='postform'>"; | |
echo "<option value=''>Показать все $tax_name</option>"; | |
foreach ($terms as $term) { | |
echo '<option value='. $term->slug, $_GET[$tax_slug] == $term->slug ? ' selected="selected"' : '','>' . $term->name .' (' . $term->count .')</option>'; | |
} | |
echo "</select>"; | |
} | |
} | |
} | |
} | |
add_action( 'restrict_manage_posts', 'pippin_add_taxonomy_filters' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment