How to rewrite the URL
-
Now i have the Query String in the URL like
https://localhost/wp/2009/?category_name=cricket
I need to Change the URL like
https://localhost/wp/cricket/2009/with same content I have used the below function in Function.php
But no luck,function custom_rewrite_rule()
{
add_rewrite_rule(‘^([^/]*)/([0-9]*)/’,’index.php?year=$matches[2]&category_name=$matches[1]’,’top’ );
}
add_action(‘init’, ‘custom_rewrite_rule’, 10, 0);Can Anyone, ? Help me please!!!!!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘How to rewrite the URL’ is closed to new replies.