Done !
| Server IP : 87.98.154.146 / Your IP : 216.73.216.74 Web Server : Apache System : Linux webm011.cluster126.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : alfamiffjq ( 77889) PHP Version : 8.2.31 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/alfamiffjq/www/alfamifwp/wp-content/themes/setto/inc/ |
Upload File : |
<?php
function setto_custom_header_setup() {
add_theme_support( 'custom-header', apply_filters( 'setto_custom_header_args', array(
'default-image' => '',
'default-text-color' => '222',
'width' => 2000,
'height' => 200,
'flex-height' => true,
'wp-head-callback' => 'setto_header_style',
) ) );
}
add_action( 'after_setup_theme', 'setto_custom_header_setup' );
if ( ! function_exists( 'setto_header_style' ) ) :
function setto_header_style() {
$header_text_color = get_header_textcolor();
?>
<style type="text/css">
<?php
if ( ! display_header_text() ) :
?>
.site-title,
.site-description {
position: absolute;
clip: rect(1px, 1px, 1px, 1px);
}
<?php
else :
?>
h4.site-title,
p.site-description {
color: #<?php echo esc_attr( $header_text_color ); ?>;
}
<?php endif; ?>
</style>
<?php
}
endif;