テーマのアクティベーションにパーマリンク構造を設定しようとしています。テーマの function.php に含まれる以下の関数。
// Executes function on theme activation
function myactivationfunction() {
global $wp_rewrite;
$wp_rewrite->set_permalink_structure( '/%category%/%postname%/' );
// register taxonomies/post types here
flush_rewrite_rules();
}
add_action("after_switch_theme", "myactivationfunction", 10 , 2);
このコードは正しく機能しますが、値が .htaccess に書き込まれないか、.htaccess が作成されません。.htaccess ファイルを動的に書き込むにはどうすればよいですか?
どんな助けでも大歓迎です。
ありがとう