WordPress › フォーラム » TwentyTenの子テーマでウィジェットを上書きしたい.
<?php
add_action( 'after_setup_theme', 'child_theme_setup' );
if ( !function_exists( 'child_theme_setup' ) ):
function child_theme_setup () {
remove_action( 'widgets_init', 'twentyten_widgets_init' );
}
endif;
?>