Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. function filter_by_manufacture() {
  2. $params = array(
  3. 'name' => 'vyrobca',
  4. 'show_option_all' => 'Vyberte výrobcu',
  5. 'taxonomy' => 'vyrobca',
  6. 'show_count' => 1,
  7. 'value_field' => 'slug'
  8. );
  9. if ( isset($_GET['vyrobca']) )
  10. $params['selected'] = $_GET['vyrobca'];
  11.  
  12. if ( get_post_type() == 'product' ) {
  13. wp_dropdown_categories( $params );
  14. }
  15. }
  16. add_action('restrict_manage_posts', 'filter_by_manufacture');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement