Thursday, 24 February 2022

Save permalinks programmatically

 





function change_permalinks()
{
    global $wp_rewrite;
    $wp_rewrite->set_permalink_structure('/%postname%/');
    $wp_rewrite->flush_rules();
}
add_action('init', 'change_permalinks');




No comments:

Post a Comment