参考サイト:http://elearn.jp/wpman/column/c20120808_01.html
テーマ内のfunctions.phpに以下を記述(なければ作成)。
これにより、http://domain.com/pagesulug.html
となる。
1 2 3 4 5 6 7 8 |
add_action( 'init', 'mytheme_init' ); if ( ! function_exists( 'mytheme_init' ) ) { function mytheme_init() { global $wp_rewrite; $wp_rewrite->page_structure = $wp_rewrite->root . '%pagename%.html'; flush_rewrite_rules( false ); } } |
てst