Advertisement
Guest User

Untitled

a guest
Dec 11th, 2023
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. add_filter('post_link', 'change_permalink', 10, 2);
  2. function change_permalink($permalink, $post) {
  3. $suffix = get_daily_suffix();
  4. return str_replace('/posts/', '/' . $suffix . '/', $permalink);
  5. }
  6.  
  7.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement