Skip to content

Instantly share code, notes, and snippets.

@hokuma
Created August 26, 2013 13:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hokuma/6341341 to your computer and use it in GitHub Desktop.
Save hokuma/6341341 to your computer and use it in GitHub Desktop.
wordpressのURLカスタマイズ ref: http://qiita.com/halhide/items/9a1ac15164edb92991a9
add_rewrite_rule('カスタム投稿名/([^/]+)(/([^/]+))?/?$','index.php?カスタム投稿名=$matches[1]&xxxpage=$matches[3]','top');
function add_query( $query_args ) {
$query_args[] = "xxxpage";
return $query_args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment