WordPressのURL構造からcategoryを消す方法【コピペでOK】
はじめに
WordPressのカテゴリー配下のURL構造には、/category/
の文字列が必ず含まれてしまいます。
例えば、mobile
カテゴリーに所属するiphone
というURLスラッグの記事を投稿した場合は、次のようなURL構造になります。
https://hogehoge.com/category/mobile/iphone/
SEO的には、次のようなURL構造にした方が検索エンジンに階層を伝えやすく、/category/
を消したくなる場合があると思います。
https://hogehoge.com/mobile/iphone/
この記事では、WordPressのURL構造に含まれる/category/
を消す方法について紹介していきます。
WordPressのURLからcategoryを消す
WordPressのfunction.phpに以下のコードを設置してください。
管理画面から、外観→テーマエディター→テーマファイルで編集できます。
//URL構造からcategoryを削除
function remcat_function($link) {
return str_replace("/category/", "/", $link);
}
add_filter('user_trailingslashit', 'remcat_function');
function remcat_flush_rules() {
global $wp_rewrite;
$wp_rewrite->flush_rules();
}
add_action('init', 'remcat_flush_rules');
function remcat_rewrite($wp_rewrite) {
$new_rules = array('(.+)/page/(.+)/?' => 'index.php?category_name='.$wp_rewrite->preg_index(1).'&paged='.$wp_rewrite->preg_index(2));
$wp_rewrite->rules = $new_rules + $wp_rewrite->rules;
}
add_filter('generate_rewrite_rules', 'remcat_rewrite');
上記のコードは、パーマリンク設定が/%category%/%postname%/
でサブカテゴリがある場合は、404になってしまい残念ながら使えません。
Author And Source
この問題について(WordPressのURL構造からcategoryを消す方法【コピペでOK】), 我々は、より多くの情報をここで見つけました https://qiita.com/blog_bootcamp/items/f8181e553c52a12fb921著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .