(Trabalhando com temas filhos) Cancele o registro e substitua a barra lateral vinte e sete do WordPress

Qualquer pessoa interessada em criar um tema filho para ser usado em conjunto com o tema Twentyeleven (pai) do WordPress, em algum ponto, encontrará a necessidade de substituir funções dentro do tema pai.

Aqui está como o function.php do seu filho deve ser lido ao tentar cancelar o registro e substituir a barra lateral widgetized encontrada no tema 20theleven:

// !AFTER_SETUP_THEME
add_action
( 'after_setup_theme', 'randy_setup' );
function randy_setup() {

/* Remove the twentyeleven registered sidebars */
remove_action
( 'widgets_init', 'twentyeleven_widgets_init' );

function randy_widgets_init() {
(replaced code, copied and edited from parent theme)
}
add_action
( 'widgets_init', 'randy_widgets_init' );
}

Saiba mais sobre o tema WP após a configuração : http://codex.wordpress.org/Plugin_API/Action_Reference/after_setup_theme