Childtheme - Reescribir un shortcode del tema padre
add_action( 'after_setup_theme', 'remove_add_shortcode' );
function remove_add_shortcode() {
remove_shortcode( 'shortcode' );
add_shortcode( 'shortcode', 'child_shortcode' );
}
remove_shortcode( 'shortcode' );
add_shortcode( 'shortcode', 'child_shortcode' );
}
function child_shortcode()
{
}