'fff', 'header-text' => false, 'width' => 1600, 'height' => 400, 'wp-head-callback' => 'business_meetup_conference_header_style', ) ) ); } add_action( 'after_setup_theme', 'business_meetup_conference_custom_header_setup' ); if ( ! function_exists( 'business_meetup_conference_header_style' ) ) : /** * Styles the header image and text displayed on the blog * * @see business_meetup_conference_custom_header_setup(). */ add_action( 'wp_enqueue_scripts', 'business_meetup_conference_header_style' ); function business_meetup_conference_header_style() { //Check if user has defined any header image. if ( get_header_image() ) : $business_meetup_conference_custom_css = " .headerbox,.header-img{ background-image:url('".esc_url(get_header_image())."') !important; background-position: center top; }"; wp_add_inline_style( 'business-meetup-conference-style', $business_meetup_conference_custom_css ); endif; } endif;