function.php– tag –
-
wordpress
MailPoet Newsletters
http://techmemo.biz/wordpress/mailpoet-newsletters/http://hacknote.jp/archives/4935/http://happy-turning.com/netbiz000/plugin02.html -
wordpress
プラグインなしで固定ページにhtmlをつける
/** * 固定ページの拡張子をタイトル.htmlにする */ add_action( 'init', 'mytheme_init' ); if ( ! function_exists( 'mytheme_init' ) ) { function mytheme_init() { global $wp_rewrite; $wp_rewrite->use_trailing_slashes = false; $wp_rewrite-&...
1