Created
June 25, 2015 23:44
-
-
Save Frithir/cd109c4b4dd2c0c39e05 to your computer and use it in GitHub Desktop.
Wordpress Add drop dwon for custom tax
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
// Add drop dwon for custom tax | |
function restrict_books_by_genre() { | |
global $typenow; | |
$post_type = 'resource'; // change HERE | |
$taxonomy = 'resource_cats'; // change HERE | |
if ($typenow == $post_type) { | |
$selected = isset($_GET[$taxonomy]) ? $_GET[$taxonomy] : ''; | |
$info_taxonomy = get_taxonomy($taxonomy); | |
wp_dropdown_categories(array( | |
'show_option_all' => __("Show All {$info_taxonomy->label}"), | |
'taxonomy' => $taxonomy, | |
'name' => $taxonomy, | |
'orderby' => 'name', | |
'selected' => $selected, | |
'show_count' => true, | |
'hide_empty' => true, | |
)); | |
}; | |
} | |
add_action('restrict_manage_posts', 'restrict_books_by_genre'); | |
function convert_id_to_term_in_query($query) { | |
global $pagenow; | |
$post_type = 'resource'; // change HERE | |
$taxonomy = 'resource_cats'; // change HERE | |
$q_vars = &$query->query_vars; | |
if ($pagenow == 'edit.php' && isset($q_vars['post_type']) && $q_vars['post_type'] == $post_type && isset($q_vars[$taxonomy]) && is_numeric($q_vars[$taxonomy]) && $q_vars[$taxonomy] != 0) { | |
$term = get_term_by('id', $q_vars[$taxonomy], $taxonomy); | |
$q_vars[$taxonomy] = $term->slug; | |
} | |
} | |
add_filter('parse_query', 'convert_id_to_term_in_query'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment