Advertisement
mbis

Bulk Edit - hook

Jan 28th, 2019
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. function pm_autoupdate_uri_bulkedit($post_id) {
  2.     global $permalink_manager_uris;
  3.  
  4.     $permalink_manager_uris[$post_id] = Permalink_Manager_URI_Functions_Post::get_default_post_uri($post_id);
  5.  
  6.     update_option('permalink-manager-uris', $permalink_manager_uris);
  7. }
  8. add_action('woocommerce_update_product', 'pm_autoupdate_uri_bulkedit', 10, 1);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement