您可以通过调用set_permalink_structure()
全局方法$wp_rewrite
对象
add_action( \'init\', function() {
global $wp_rewrite;
$wp_rewrite->set_permalink_structure( \'/%year%/%monthnum%/%postname%/\' );
} );
这里有一个PHP<;5.3代码版本,以防出现错误。
function reset_permalinks() {
global $wp_rewrite;
$wp_rewrite->set_permalink_structure( \'/%year%/%monthnum%/%postname%/\' );
}
add_action( \'init\', \'reset_permalinks\' );