プラグインなしで固定ページにhtmlをつける

/** * 固定ページの拡張子をタイトル.htmlにする */ add_action( ‘init’, ‘mytheme_init’ ); if ( ! function_exists( ‘mytheme_init’ ) ) { function mytheme_init() { global $wp_rewrite; $wp_rewrite->use_trailing_slashes = false;...