'; } } add_action( 'wp_head', 'amazonrise_pingback_header' ); /** * A helper conditional function. * Whether there is a post thumbnail and post is not password protected. * * @return bool */ function amazonrise_has_post_thumbnail() { /** * Post Thumbnail Filter * @return bool */ return apply_filters( 'amazonrise_has_post_thumbnail', (bool) ( ! post_password_required() && has_post_thumbnail() ) ); } /** * Remove color, header_image, background_image setting * @return bool */ function amazonrise_remove_customize_register( $wp_customize ) { $wp_customize->remove_section( 'colors'); $wp_customize->remove_section( 'header_image'); $wp_customize->remove_section( 'background_image'); } add_action( 'customize_register', 'amazonrise_remove_customize_register',50 );