Skip to content

Instantly share code, notes, and snippets.

@gatespace
Last active June 15, 2016 03:46
Show Gist options
  • Save gatespace/2822257 to your computer and use it in GitHub Desktop.
Save gatespace/2822257 to your computer and use it in GitHub Desktop.
WordPressで投稿者アーカイブを作らないフィルター via. http://gatespace.jp/2012/05/16/author-archive-rewrite-rule/
<?php
/**
* 投稿者アーカイブを作らないフィルター
* テーマのfunctions.phpに記述後、設定→パーマリンク設定を更新(flush_rules() を実行)すること。
*/
add_filter( 'author_rewrite_rules', '__return_empty_array' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment