Guest User

Untitled

a guest
Dec 15th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. add_filter('post_type_link', 'my_custom_public_link',10,2);
  2. function my_custom_public_link($permalink) {
  3.  
  4. // 現在の投稿タイプを取得
  5. $post_type = get_post_type();
  6.  
  7. // 書き換えたい投稿タイプを指定
  8. if ( $post_type == 'recruit' ){
  9. $permalink = '表示したいページのURL';
  10. }
  11. return $permalink;
  12. }
Add Comment
Please, Sign In to add comment