Advertisement
Guest User

Untitled

a guest
Aug 26th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?
  2. add_filter( 'user_trailingslashit', 'no_page_slash', 70, 2 );
  3. function no_page_slash( $string, $type ){
  4. global $wp_rewrite;
  5.  
  6. if( $type == 'page' && $wp_rewrite->using_permalinks() && $wp_rewrite->use_trailing_slashes )
  7. $string = untrailingslashit( $string );
  8.  
  9. return $string;
  10. }
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement