Guest User

Untitled

a guest
Jan 16th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. function wpd_page_link( $link, $post_id ){
  2. global $wp_query;
  3. if( isset( $wp_query->query_vars['app-view'] ) ){
  4. return $link . 'app-view/';
  5. }
  6. return $link;
  7. }
  8. add_filter( 'page_link', 'wpd_page_link', 10, 2 );
Add Comment
Please, Sign In to add comment