HEX
Server: nginx/1.28.0
System: Linux yisu-68a5f20334161 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: www (1000)
PHP: 8.2.28
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/q.autos58.cn/wp-content/themes/morenews/inc/custom-header.php
<?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 MoreNews
 */

/**
 * Set up the WordPress core custom header feature.
 *
 * @uses morenews_header_style()
 */
function morenews_custom_header_setup()
{
  add_theme_support('custom-header', apply_filters('morenews_custom_header_args', array(
    'default-image' => '',
    'default-text-color' => '1f1f1f',
    'width' => 1500,
    'height' => 400,
    'flex-height' => true,
    'wp-head-callback' => 'morenews_header_style',
  )));
}

add_action('after_setup_theme', 'morenews_custom_header_setup');

if (!function_exists('morenews_header_style')) :
  /**
   * Styles the header image and text displayed on the blog.
   *
   * @see morenews_custom_header_setup().
   */
  function morenews_header_style()
  {
    $morenews_header_image_tint_overlay = morenews_get_option('disable_header_image_tint_overlay');
    $morenews_site_title_font_size = morenews_get_option('site_title_font_size');
    $morenews_header_text_color = get_header_textcolor();



    // If we get this far, we have custom styles. Let's do this.
?>
    <style type="text/css">
      <?php

      if ($morenews_header_image_tint_overlay):
      ?>body .af-header-image.data-bg:before {
        opacity: 0;
      }

      <?php
      endif;
      // Has the text been hidden?
      if (! display_header_text()) :
      ?>.site-title,
      .site-description {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        display: none;
      }

      <?php
      // If the user has set a custom color for the text use that.
      else :
      ?>
      .site-title a,
      .site-header .site-branding .site-title a:visited,
      .site-header .site-branding .site-title a:hover,
      .site-description {
        color: #<?php echo esc_attr($morenews_header_text_color); ?>
      }

      body.aft-dark-mode .site-title a,
      body.aft-dark-mode .site-header .site-branding .site-title a:visited,
      body.aft-dark-mode .site-header .site-branding .site-title a:hover,
      body.aft-dark-mode .site-description {
        color: #ffffff;
      }

      .header-layout-3 .site-header .site-branding .site-title,
      .site-branding .site-title {
        font-size: <?php echo esc_attr($morenews_site_title_font_size); ?>px;
      }

      @media only screen and (max-width: 640px) {
        .site-branding .site-title {
          font-size: 2.75rem;

        }
      }

      /* @media only screen and (max-width: 375px) {
                    .site-branding .site-title {
                        font-size: 32px;

                    }
                } */

      <?php endif; ?>
    </style>
<?php
  }
endif;