| 123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- /**
- * Sample implementation of the Custom Header feature
- *
- * You can add an optional custom header image to header.php like so ...
- *
- <?php the_header_image_tag(); ?>
- *
- * @link https://developer.wordpress.org/themes/functionality/custom-headers/
- *
- * @package XShop
- */
- /**
- * Set up the WordPress core custom header feature.
- *
- * @uses xshop_header_style()
- */
- function xshop_custom_header_setup() {
- add_theme_support(
- 'custom-header',
- apply_filters(
- 'xshop_custom_header_args',
- array(
- 'default-image' => '',
- 'default-text-color' => '000000',
- 'width' => 1800,
- 'height' => 250,
- 'flex-height' => true,
- )
- )
- );
- }
- add_action( 'after_setup_theme', 'xshop_custom_header_setup' );
|