Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. //use this filter to change the label of the "Select Category" label in the category filter in listings
  2.  
  3. add_filter('wpgmp_text_settings','wpgm_category_label_change',1,10);
  4.  
  5. function wpgm_category_label_change( $category_label ) {
  6. $category_label['select_category'] = 'Select Department'; //insert any category label as per your need
  7. return $category_label;
  8.  
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement