Use this code to change the permalink settings from your
The .htaccess mod_rewrite it is still necessary.
functions.php
file.The .htaccess mod_rewrite it is still necessary.
<?php
// set permalink
function set_permalink()
{
global $wp_rewrite;
$wp_rewrite->set_permalink_structure('/%year%/%monthnum%/%postname%/');
}
add_action('init', 'set_permalink');
?>
No comments:
Post a Comment