mbis

Dynamic "Slugs mode"

Aug 5th, 2020 (edited)
295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. function pm_slugs_mode($custom_slug_mode, $slug, $object) {
  2.     if(!empty($object->post_type) && $object->post_type == 'job_listing') {
  3.         // Use post titles for single listings
  4.         $custom_slug_mode = 1;
  5.  
  6.         // Use native slugs for single listings (default mode)
  7.         // $custom_slug_mode = 0;
  8.     }
  9.    
  10.     return $custom_slug_mode;
  11. }
  12. add_filter('permalink_manager_force_custom_slugs', 'pm_slugs_mode', 99, 3);
Add Comment
Please, Sign In to add comment