WordPress3.0から使える親テーマ機能。
便利なんだけど、親テーマのfunctions.phpで設定されているactionやfilterを子テーマでremoveする方法が分からず悶々としてたけど、ようやく方法が分かりました。
本家Forum : [resolved] can i create child functions.php file for twentyten?
http://wordpress.org/support/topic/can-i-create-child-functionsphp-file-for-twentyten?replies=26
Adeptris さんによれば
after_setup_theme
を使えば良いらしい。
/** Tell WordPress to run child_theme_setup() when the 'after_setup_theme' hook is run. */ add_action( 'after_setup_theme', 'child_theme_setup' ); /** This function will hold our new calls and over-rides */ if ( !function_exists( 'child_theme_setup' ) ): function child_theme_setup() { } endif;
関数 child_theme_setup
にremoveを書けば対応できました。
感謝感謝です。