Guest User

Untitled

a guest
Jan 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. add_filter('post_link', 'lastcategory_post_permalink', 10, 3);
  2.  
  3. function lastcategory_post_permalink($permalink) {
  4. $lastCat = array_reverse(explode("/", $permalink));
  5. $permalink = get_bloginfo('url') . "/".$lastCat[1]."/".$lastCat[0];
  6. return $permalink;
  7. }
Add Comment
Please, Sign In to add comment