Server IP : 172.24.0.40 / Your IP : 216.73.216.10 Web Server : Apache System : Linux dbweb26.ust.edu.ph 4.18.0-513.5.1.el8_9.x86_64 #1 SMP Fri Sep 29 05:21:10 EDT 2023 x86_64 User : apache ( 48) PHP Version : 8.2.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/tomas.dbweb26.0617251441/public_html/wp-content/themes/jetblack/inc/ |
Upload File : |
<?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 JetBlack */ /** * Set up the WordPress core custom header feature. * * @uses jetblack_header_style() */ function jetblack_custom_header_setup() { add_theme_support( 'custom-header', apply_filters( 'jetblack_custom_header_args', array( 'default-image' => get_parent_theme_file_uri( '/images/header-image.jpg' ), 'default-text-color' => '000000', 'width' => 1920, 'height' => 1080, 'flex-height' => true, 'wp-head-callback' => 'jetblack_header_style', 'video' => true, ) ) ); $header_images = array( 'default' => array( 'url' => get_parent_theme_file_uri( '/images/header-image.jpg' ), 'thumbnail_url' => get_parent_theme_file_uri( '/images/header-image-275x155.jpg' ), ), ); register_default_headers( $header_images ); } add_action( 'after_setup_theme', 'jetblack_custom_header_setup' ); if ( ! function_exists( 'jetblack_header_style' ) ) : /** * Styles the header image and text displayed on the blog. * * @see jetblack_custom_header_setup(). */ function jetblack_header_style() { $header_image = get_header_image(); if ( $header_image ) : ?> <style type="text/css" rel="header-image"> #custom-header { background-image: url( <?php echo esc_url( $header_image ); ?>); } </style> <?php endif; $header_text_color = get_header_textcolor(); /* * If no custom options for text are set, let's bail. * get_header_textcolor() options: Any hex value, 'blank' to hide text. Default: add_theme_support( 'custom-header' ). */ if ( get_theme_support( 'custom-header', 'default-text-color' ) === $header_text_color ) { return; } // If we get this far, we have custom styles. Let's do this. ?> <style type="text/css"> <?php // Has the text been hidden? if ( ! display_header_text() ) : ?> .site-title, .site-description { position: absolute; clip: rect(1px, 1px, 1px, 1px); } <?php // If the user has set a custom color for the text use that. else : ?> .site-title a, .site-description { color: #<?php echo esc_attr( $header_text_color ); ?>; } <?php endif; ?> </style> <?php } endif; if ( ! function_exists( 'jetblack_header_title' ) ) : /** * Return main header title. */ function jetblack_header_title() { if ( ! is_singular() && is_front_page() ) { ?> <h2 class="page-title"><?php bloginfo( 'name' ); ?></h2> <?php $jetblack_description = get_bloginfo( 'description', 'display' ); if ( $jetblack_description || is_customize_preview() ) : ?> <p class="site-description-inner"><?php echo esc_html( $jetblack_description ); ?></p> <?php endif; } elseif ( is_singular() ) { the_title( '<h1 class="page-title">', '</h1>' ); if ( is_single() ) : ?> <div class="entry-meta"> <?php jetblack_entry_header(); ?> </div> <?php endif; } elseif ( ! is_front_page() && is_home() ) { ?> <h1 class="page-title"><?php echo esc_html( get_the_title( get_option('page_for_posts', true) ) ); ?></h1> <?php } elseif ( ! is_front_page() && is_home() ) { ?> <h1 class="page-title"><?php echo esc_html( get_the_title( get_option('page_for_posts', true) ) ); ?></h1> <?php } elseif ( is_404() ) { ?> <h1 class="page-title"><?php esc_html_e( 'Oops! That page can’t be found.', 'jetblack' ); ?></h1> <?php } elseif ( is_search() ) { ?> <h1 class="page-title"> <?php /* translators: %s: search query. */ printf( esc_html__( 'Search Results for: %s', 'jetblack' ), '<span>' . get_search_query() . '</span>' ); ?> </h1> <?php } else { the_archive_title( '<h1 class="page-title">', '</h1>' ); the_archive_description( '<div class="archive-description">', '</div>' ); } } // jetblack_header_title. endif;