WordPress カテゴリディレクトリからカテゴリを削除する
リリース: 2016-07-25 08:47:44
演示效結果:http://houjinzhe.com/news/
- /*
- *去除分类标志代码
- */
- add_action( 'load-主題.php', 'no_category_base_refresh_rules');
- add_action('created_category', 'no_category_base_refresh_rules');
- add_action('edited_category', 'no_category_base_refresh_rules');
- add_action('delete_category', 'no_category_base_refresh_rules');
- function no_category_base_refresh_rules() {
- global $wp_rewrite;
- $wp_rewrite ->フラッシュルール();
- }
-
- // register_deactivation_hook(__FILE__, 'no_category_base_deactivate');
- // function no_category_base_deactivate() {
- // Remove_filter('category_rewrite_rules', 'no_category_base_rewrite_rules');
- // // カスタム ルールを再度挿入したくない
- // no_category_base_refresh_rules();
- // }
-
- // カテゴリベースを削除します
- add_action('init', 'no_category_base_permastruct');
- function no_category_base_permastruct() {
- global $wp_rewrite, $wp_version;
- if (version_compare($wp_version, '3.4', '<')) {
- // 3.4 以前のサポートの場合
- $wp_rewrite -> extra_permastructs['カテゴリー'][0] = '%カテゴリー%';
- } else {
- $wp_rewrite -> extra_permastructs['カテゴリー']['構造'] = '%カテゴリー%';
- }
- }
-
- // カスタム カテゴリ書き換えルールを追加します
- add_filter('category_rewrite_rules', 'no_category_base_rewrite_rules');
- function no_category_base_rewrite_rules($category_rewrite) {
- //var_dump($category_rewrite); // デバッグ用
-
- $category_rewrite = array();
- $categories = get_categories(array('hide_empty' => false));
- foreach ($categories as $category) {
- $category_nicename = $category ->ナメクジ;
- if ($category ->parent == $category ->cat_ID)// 再帰的再帰
- $category ->gt;親 = 0;
- elseif ($category ->parent != 0)
- $category_nicename = get_category_parents($category ->parent, false, '/', true) 。 $カテゴリ_ナイス名;
- $category_rewrite['(' . $category_nicename . ')/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$'] = 'index.php?category_name=$matches[1] &feed=$matches[2]';
- $category_rewrite['(' . $category_nicename . ')/page/?([0-9]{1,})/?$'] = 'index.php?category_name=$matches[1]&paged=$matches [2]';
- $category_rewrite['(' . $category_nicename . ')/?$'] = 'index.php?category_name=$matches[1]';
- }
- // 古いカテゴリーベースからのリダイレクトサポート
- global $wp_rewrite;
- $old_category_base = get_option('category_base') ? get_option('カテゴリベース') : 'カテゴリ';
- $old_category_base = トリム($old_category_base, '/');
- $category_rewrite[$old_category_base . '/(.*)$'] = 'index.php?category_redirect=$matches[1]';
-
- //var_dump($category_rewrite); // デバッグ用
- return $category_rewrite;
- }
-
-
- // 'category_redirect' クエリ変数を追加します
- add_filter('query_vars', 'no_category_base_query_vars');
- function no_category_base_query_vars($public_query_vars) {
- $public_query_vars[] = 'category_redirect';
- $public_query_vars を返します;
- }
-
- // 'category_redirect' が設定されている場合はリダイレクト
- add_filter('request', 'no_category_base_request');
- function no_category_base_request($query_vars) {
- //print_r($query_vars); // デバッグ用
- if (isset($query_vars['category_redirect'])) {
- $catlink = trailingslashit(get_option('home')) . user_trailingslashit($query_vars['category_redirect'], 'category');
- status_header(301);
- header("場所: $catlink");
- exit();
- }
- $query_vars を返します。
- }
复制代
|
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31