golden hour
/home/phakp/public_html/wp/wp-content/themes/luxury-travel/inc
⬆️ Go Up
Upload
File/Folder
Size
Actions
color-option.php
18.03 KB
Del
OK
custom-header.php
1.2 KB
Del
OK
customizer.php
57.27 KB
Del
OK
getting-started
-
Del
OK
logo
-
Del
OK
section-pro.php
1.47 KB
Del
OK
template-tags.php
3.79 KB
Del
OK
Edit: custom-header.php
<?php /** * @package Luxury Travel * @subpackage luxury-travel * Setup the WordPress core custom header feature. * * @uses luxury_travel_header_style() */ function luxury_travel_custom_header_setup() { add_theme_support( 'custom-header', apply_filters( 'luxury_travel_custom_header_args', array( 'default-text-color' => 'fff', 'header-text' => false, 'width' => 1600, 'height' => 400, 'wp-head-callback' => 'luxury_travel_header_style', ) ) ); } add_action( 'after_setup_theme', 'luxury_travel_custom_header_setup' ); if ( ! function_exists( 'luxury_travel_header_style' ) ) : /** * Styles the header image and text displayed on the blog * * @see luxury_travel_custom_header_setup(). */ add_action( 'wp_enqueue_scripts', 'luxury_travel_header_style' ); function luxury_travel_header_style() { //Check if user has defined any header image. if ( get_header_image() ) : $luxury_travel_custom_css = " .menu-sec{ background-image:url('".esc_url(get_header_image())."'); background-position: center top; }"; wp_add_inline_style( 'luxury-travel-basic-style', $luxury_travel_custom_css ); endif; } endif; //luxury_travel_header_style
Save