Answer the question
In order to leave comments, you need to log in
How to change page url in WordPress?
Good afternoon!
I can't write a function that changes the page name in WordPress from "page-name" to "alternate-page-name"...
Here's what I've done so far (doesn't work):
function true_add_html_on_pages() {
global $wp_rewrite;
if ( $wp_rewrite->get_page_permastruct() == 'page-name' ) {
$wp_rewrite->page_structure = 'alternate-page-name';
$wp_rewrite->flush_rules();
}
}
add_action('init', 'true_add_html_on_pages', -1);
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question