Created
October 11, 2017 13:15
-
-
Save igorveremsky/fd5137f636aa20687d504663a29860aa to your computer and use it in GitHub Desktop.
Remove '/category/' from category archive url Wordpress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Remove '/category/' from category archive url | |
* */ | |
function remcat_function($link) { | |
return str_replace("/category/", "/", $link); | |
} | |
add_filter('user_trailingslashit', 'remcat_function'); | |
function remcat_flush_rules() { | |
global $wp_rewrite; | |
$wp_rewrite->flush_rules(); | |
} | |
add_action('init', 'remcat_flush_rules'); | |
function remcat_rewrite($wp_rewrite) { | |
$new_rules = array('(.+)/page/(.+)/?' => 'index.php?category_name='.$wp_rewrite->preg_index(1).'&paged='.$wp_rewrite->preg_index(2)); | |
$wp_rewrite->rules = $new_rules + $wp_rewrite->rules; | |
} | |
add_filter('generate_rewrite_rules', 'remcat_rewrite'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment