Advertisement
Guest User

Untitled

a guest
Feb 10th, 2021
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function pm_regenerate_custom_permalink($post_ID, $post, $update) {
  2.     global $permalink_manager_uris;
  3.  
  4.     if($post->post_type == 'courses') {
  5.         $permalink_manager_uris[$post_id] = Permalink_Manager_URI_Functions_Post::get_default_post_uri($post_id);
  6.         update_option('permalink-manager-uris', $permalink_manager_uris);
  7.     }
  8. }
  9. add_action('save_post', 'pm_regenerate_custom_permalink', 111, 3);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement