导读:建站技术建站技术我们都知道,WordPress文章作者的存档页面地址都是类似 http://domain.com/author/cmhello 这样的,在用户名前面会添加“au网站平台搭建建站技术步梁。
我们都知道,WordPress文章作者的存档页面地址都是类似 http://domain.com/author/cmhello 这样的,在用户名前面会添加“author”前缀。今天就分享下更改或者移除这个前缀的方法。
更改作者存档前缀 author
比如将 http://domain.com/author/cmhello 修改为 http://domain.com/profile/cmhello 样式,并且支持作者存档页面的Feed输出。
将下面的代码添加到当前主题的 functions.php 即可:
//更改作者存档前缀
add_action('init', 'mbxzb_change_author_base');
function mbxzb_change_author_base() {
global $wp_rewrite;
$author_slug = 'profile'; // 更改前缀为 profile
$wp_rewrite->author_base = $author_slug;
}
上面的代码就将前缀 author 更改为 profile 了,请根据自己梦织模板的实际,修改第 5行的前缀。
参考资料:http://wp-snippet.com/snippets/change-the-author-slug-url-base/
注:如果添加代码后,访问新的存档地址出现 404 错误,请访问WP后台 >设置>固定链接,重新保存一次即可。下同。
移除作者存档前缀 author
将原来的 http://domain.com/author/cmhello 修改为 http://domain.com/cmhello ,并且支持作者存档页面的Feed输出。
//通过 author_rewrite_rules 钩子添加新的重写规则
add_filter('author_rewrite_rules', 'no_author_base_rewrite_rules');
function no_author_base_rewrite_rules($author_rewrite) {
global $wpdb;
$author_rewrite = array();
$authors = $wpdb->get_results("SELECT user_nicename AS nicename from $wpdb->users"); dede后台模板;
foreach($authors as $author) {
$author_rewrite["({$author->nicename})/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$"] = 'index.php?author_name=$matches[1]&feed=$matches[2]';
$author_rewrite["({$author->nicename})/page/?([0-9]+)/?$"] = 'index.php?author_name=$matches[1]&paged=$matches[2]';
$author_rewrite["({$author->nicename})/?$"] =dede手机模板 'index.php?author_name=$matches[1]';
关键词标签: 建站 前缀 移除
声明: 本文由我的SEOUC技术文章主页发布于:2023-07-23 ,文章更改/移除WordPress作者存档页面的前缀“author”主要讲述前缀,移除,建站网站建设源码以及服务器配置搭建相关技术文章。转载请保留链接: https://www.seouc.com/article/web_35329.html