去掉链接中的category

XIAO Qinghe
XIAO Qinghe
管理员
1731
文章
0
粉丝
日志记录评论103字数 463阅读1分32秒阅读模式

1、将如下代码加入主题中的function.php

//去除分类标志代码
add_action( 'load-themes.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 -> flush_rules();
}
// register_deactivation_hook(__FILE__, 'no_category_base_deactivate');
// function no_category_base_deactivate() {
// remove_filter('category_rewrite_rules', 'no_category_base_rewrite_rules');
// // We don't want to insert our custom rules again
// no_category_base_refresh_rules();
// }
// Remove category base
add_action('init', 'no_category_base_permastruct');
function no_category_base_permastruct() {
global $wp_rewrite, $wp_version;
if (version_compare($wp_version, '3.4', '<')) {
// For pre-3.4 support
$wp_rewrite -> extra_permastructs['category'][0] = '%category%';
} else {
$wp_rewrite -> extra_permastructs['category']['struct'] = '%category%';
}
}
// Add our custom category rewrite rules
add_filter('category_rewrite_rules', 'no_category_base_rewrite_rules');
function no_category_base_rewrite_rules($category_rewrite) {
//var_dump($category_rewrite); // For Debugging
$category_rewrite = array();
$categories = get_categories(array('hide_empty' => false));
foreach ($categories as $category) {
$category_nicename = $category -> slug;
if ($category -> parent == $category -> cat_ID)// recursive recursion
$category -> parent = 0;
elseif ($category -> parent != 0)
$category_nicename = get_category_parents($category -> parent, false, '/', true) . $category_nicename;
$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]';
}
// Redirect support from Old Category Base
global $wp_rewrite;
$old_category_base = get_option('category_base') ? get_option('category_base') : 'category';
$old_category_base = trim($old_category_base, '/');
$category_rewrite[$old_category_base . '/(.*)$'] = 'index.php?category_redirect=$matches[1]';
//var_dump($category_rewrite); // For Debugging
return $category_rewrite;
}
// Add 'category_redirect' query variable
add_filter('query_vars', 'no_category_base_query_vars');
function no_category_base_query_vars($public_query_vars) {
$public_query_vars[] = 'category_redirect';
return $public_query_vars;
}
// Redirect if 'category_redirect' is set
add_filter('request', 'no_category_base_request');
function no_category_base_request($query_vars) {
//print_r($query_vars); // For Debugging
if (isset($query_vars['category_redirect'])) {
$catlink = trailingslashit(get_option('home')) . user_trailingslashit($query_vars['category_redirect'], 'category');
status_header(301);
header("Location: $catlink");
exit();
}
return $query_vars;
}

 

2、将固定链接改为plain,然后再改为如下:

/%post_id%.html

继续阅读
 
家乡的这些事情,我也无能为力 日志记录

家乡的这些事情,我也无能为力

最近老家的亲戚们遇到了一些事情,可是我只是提供一些建议,实在是无能为力。 1、一位亲戚是残疾人,农村用的三轮车是其非常重要的生产、生活工具,不料出了本村之后被交警拖走,说需要补交1万元保险、上牌。我们...
声明:与曲晋没有任何关系 日志记录

声明:与曲晋没有任何关系

最近有朋友告知,一位名叫曲晋的人,到处宣称与我关系密切,说帮我“做过很多的事情”,我的“研究所是托他的力量才建成的”。 就此我声明如下:我与曲晋应该在上海大学见过一面,好像讨论过汉语基督教文献的事情,...
北京交通现状 日志记录

北京交通现状

变道从来不打灯(机动车右转从不打灯,有时左转也不打灯,即使是在校园里) 让你就贴在身后(机动车让行就是紧紧贴在你身后,极少见过主动让行的车) 斑马线等于没有(机动车、非机动车从不让行斑马线;右转红灯时...
匪夷所思 日志记录

匪夷所思

昨天接到上海某高校一位老师的电话,说在正高职称评审过程中,领导看到她有一篇文章发表在《中国基督教研究》上,要求她撤稿、并写说明,评委会中止讨论,等她撤稿、写说明之后才继续讨论。 这是我第一次碰到了这种...
匿名

发表评论

匿名网友
确定

拖动滑块以完成验证