我想删除类别&来自WordPress URL的标记库。我遇到过使用插件的其他帖子和解决方案。我想远离插件并从functions.php中获得解决方案。这将阻止任何未来的插件更新或WordPress默认文件被更改。
任何帮助将不胜感激。谢谢!
到目前为止,我尝试过这些解决方案:
答案 0 :(得分:52)
我喜欢这个解决方案:
如果您要从网址中删除/category/
,请按以下两个步骤操作:
/%category%/%postname%/
.
保存它,您会看到您的网址已更改为以下格式: HTTP:/yourblog.com/quotes /
(资料来源:http://premium.wpmudev.org/blog/daily-tip-quick-trick-to-remove-category-from-wordpress-url/)
答案 1 :(得分:17)
虽然您将其视为解决方案,但该插件是迄今为止最简单且最一致的方法,并且它们不会更改任何WordPress默认文件。
http://wordpress.org/plugins/wp-no-category-base/
它不需要更新一年,所以它不会在更新时产生任何问题。
没有简单的手动滚动解决方案可以完成所有这些,而不仅仅是复制插件在您自己的函数中的作用.php
另外,如果WordPress确实发生了变化,那么你就可以获得这样的好处,然后你就可以更新插件了,然后你就必须弄清楚如何自己修复自己的代码。
答案 2 :(得分:17)
设置类别基数:。 (点不是/)
保存。 100%正常工作。
答案 3 :(得分:13)
如果您使用Yoast SEO
插件,请转到:
Advanced > Permalinks > Change URLs
从remove
选择Strip the category base (usually /category/) from the category URL
。
关于标签删除,我还没有找到任何解决方案。
答案 4 :(得分:4)
而是把它放在你的functions.php中 工作正常,没有重定向问题。
function fix_slash( $string, $type )
{
global $wp_rewrite;
if ( $wp_rewrite->use_trailing_slashes == false )
{
if ( $type != 'single' && $type != 'category' )
return trailingslashit( $string );
if ( $type == 'single' && ( strpos( $string, '.html/' ) !== false ) )
return trailingslashit( $string );
if ( $type == 'category' && ( strpos( $string, 'category' ) !== false ) )
{
$aa_g = str_replace( "/category/", "/", $string );
return trailingslashit( $aa_g );
}
if ( $type == 'category' )
return trailingslashit( $string );
}
return $string;
}
add_filter( 'user_trailingslashit', 'fix_slash', 55, 2 );
答案 5 :(得分:2)
非类别插件对我不起作用。
对于Multisite WordPress,以下工作:
\
; /%category%/%postname%/
下。
这会将您的网址显示为www.domainname.com/categoryname/postname
; yourdoamainname/blog/
。忽略它。如果您现在保存,您在步骤4中所做的工作将被覆盖。打开固定链接页面但不保存的步骤需要更新数据库答案 6 :(得分:2)
如果你仍在搜索组合(网址上的标签,类别和页面),你可以像我一样。
.
)
使用Wordpress 3.9.1进行测试
如果您有相同名称的页面,类别或标签,系统将采用:
答案 7 :(得分:2)
点法可能会破坏你的RSS提要和/或分页。但是这些工作:
add_filter('category_rewrite_rules', 'no_category_base_rewrite_rules');
function no_category_base_rewrite_rules($category_rewrite) {
$category_rewrite=array();
$categories=get_categories(array('hide_empty'=>false));
foreach($categories as $category) {
$category_nicename = $category->slug;
if ( $category->parent == $category->cat_ID )
$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]';
}
global $wp_rewrite;
$old_base = $wp_rewrite->get_category_permastruct();
$old_base = str_replace( '%category%', '(.+)', $old_base );
$old_base = trim($old_base, '/');
$category_rewrite[$old_base.'$'] = 'index.php?category_redirect=$matches[1]';
return $category_rewrite;
}
// remove tag base
add_filter('tag_rewrite_rules', 'no_tag_base_rewrite_rules');
function no_tag_base_rewrite_rules($tag_rewrite) {
$tag_rewrite=array();
$tags=get_tags(array('hide_empty'=>false));
foreach($tags as $tag) {
$tag_nicename = $tag->slug;
if ( $tag->parent == $tag->tag_ID )
$tag->parent = 0;
elseif ($tag->parent != 0 )
$tag_nicename = get_tag_parents( $tag->parent, false, '/', true ) . $tag_nicename;
$tag_rewrite['('.$tag_nicename.')/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$'] = 'index.php?tag=$matches[1]&feed=$matches[2]';
$tag_rewrite['('.$tag_nicename.')/page/?([0-9]{1,})/?$'] = 'index.php?tag=$matches[1]&paged=$matches[2]';
$tag_rewrite['('.$tag_nicename.')/?$'] = 'index.php?tag=$matches[1]';
}
global $wp_rewrite;
$old_base = $wp_rewrite->get_tag_permastruct();
$old_base = str_replace( '%tag%', '(.+)', $old_base );
$old_base = trim($old_base, '/');
$tag_rewrite[$old_base.'$'] = 'index.php?tag_redirect=$matches[1]';
return $tag_rewrite;
}
// remove author base
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");
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})/?$"] = 'index.php?author_name=$matches[1]';
}
return $author_rewrite;}
add_filter('author_link', 'no_author_base', 1000, 2);
function no_author_base($link, $author_id) {
$link_base = trailingslashit(get_option('home'));
$link = preg_replace("|^{$link_base}author/|", '', $link);
return $link_base . $link;
}
答案 8 :(得分:0)
其他解决方案:
在wp-includes / rewrite.php文件中,您将看到代码:
$this->category_structure = $this->front . 'category/';
只需复制整个函数,输入你的functions.php并挂钩即可。只需更改以上行:
$this->category_structure = $this->front . '/';
答案 9 :(得分:0)
https://wordpress.org/plugins/remove-category-url/ 使用这个插件,它可以完美地隐藏类别库 它不需要任何设置只需安装和激活。
答案 10 :(得分:0)
在永久链接中选择自定义结构,并在您的域后添加/%category%/%postname%/。将“/”添加到类别库不起作用,您必须添加句点/点。我在这里写了一个教程:remove category from URL tutorial
答案 11 :(得分:0)
add_action( 'init', 'remove_category_perma' );
function remove_category_perma() {
unset($GLOBALS['wp_rewrite']->extra_permastructs['category']);
}
答案 12 :(得分:0)
WordPress 5.0.2:
要从现有帖子中删除类别标签,请执行以下操作:
/%category%/%postname%/
更改为:/%postname%/
现在可以通过domain.com/%postname%/
直接访问所有帖子,并且可以通过domain.com/category/xyz/
访问所有类别。 WordPress会自动为旧网址添加所有301重定向。因此,如果有人访问domain.com/%category%/%postname%/
,他们将自动重定向到domain.com/%postname%/
。
答案 13 :(得分:0)
我不知道如何使用代码来实现,但是对于那些不介意使用插件的人来说。这是一个对我有用的好东西:
答案 14 :(得分:-3)
添加“。”如果您想要整合的博客视图,则“/”将无效。此外,我知道该解决方案将为RSS或XML提要做些什么。我觉得最好坚持WP大会。但是,我确实提出了一种更优雅的方法。
首先,我将基类别命名为url“blog”
然后我创建了一个名为“all”的类别。最后,我,但我所有的子类别都在“所有”之下。所以我得到了这样的网址结构。
{{1}}
我在名为“Blog”的菜单项上放置了一个自定义标签,但它转到了blog / all。在.htaccess文件中301重定向/博客到/ blog / all是个好主意,以避免404 / blog。