子テーマで親テーマウィジェットの上書きをする

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;
 ?>

[emulsion_relate_posts]