Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. function post_has_archive( $args, $post_type ) {
  2. if ( 'post' == $post_type ) {
  3. $args['rewrite'] = true;
  4. $args['has_archive'] = 'blogs'; // γƒšγƒΌγ‚Έε
  5. }
  6. return $args;
  7. }
  8. add_filter( 'register_post_type_args', 'post_has_archive', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement