怎样去除wordpress分类链接中的category?

推荐代码去除

这里推荐代码去除,将以下代码粘贴到主题文件function.php


// Remove category
function remove_category( $string, $type )  {
    if ( $type != 'single' && $type == 'category' && ( strpos( $string, 'category' ) !== false ) ){
        $url_without_category = str_replace( "/category/", "/", $string );
        return trailingslashit( $url_without_category );
    }
    return $string;
}
add_filter( 'user_trailingslashit', 'remove_category', 100, 2);

本文摘自网络,不代表短经典网立场 https://www.duanjingdian.com/139.html

上一篇 2024 年 4 月 9 日 下午9:06
下一篇 2024 年 4 月 11 日 上午9:57

相关推荐