Aurangajeb

Set 'with_front' to false for the 'docs' post type using weDocs filter

Jan 8th, 2022
1,180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. /**
  2.  * Set 'with_front' to false for the 'docs' post type using weDocs filter
  3.  */
  4. add_filter( 'wedocs_post_type', function($args) {
  5.  
  6.     $args['rewrite']['with_front'] = false;
  7.  
  8.     return $args;
  9. } );
Advertisement
Add Comment
Please, Sign In to add comment