Remove Parent Theme Functions


// remove parent function
function my_theme_setup () {
    remove_action( 'wp_enqueue_scripts', 'p2_iphone_style', 1000 );
}
add_action( 'after_setup_theme', 'my_theme_setup' );