| Server IP : 38.190.208.107 / Your IP : 216.73.217.46 Web Server : nginx/1.28.1 System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64 User : root ( 0) PHP Version : 8.2.28 Disable Function : 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,eval,assert,passthru,system,exec,shell_exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/test20.chuangfenglink.xyz/wp-content/themes/woodmart/header-elements/ |
Upload File : |
<?php
/**
* Header logo element.
*
* @package woodmart
*/
$logo_url = WOODMART_IMAGES . '/wood-logo-dark.svg';
$has_sticky_logo = ( isset( $params['sticky_image']['url'] ) && ! empty( $params['sticky_image']['url'] ) );
$width_height_needed = isset( $params['width_height'] ) && $params['width_height'];
if ( isset( $params['image']['url'] ) && $params['image']['url'] ) {
$logo_url = $params['image']['url'];
}
$width = isset( $params['width'] ) ? (int) $params['width'] : 150;
$sticky_width = isset( $params['sticky_width'] ) ? (int) $params['sticky_width'] : 150;
$logo_attrs = array(
'src' => $logo_url,
'alt' => get_bloginfo( 'name' ),
'style' => 'max-width: ' . esc_attr( $width ) . 'px;',
);
if ( $width_height_needed ) {
$logo_attrs['width'] = 369;
$logo_attrs['height'] = 53;
}
if ( ! woodmart_get_opt( 'disable_wordpress_lazy_loading' ) ) {
$logo_attrs['loading'] = 'lazy';
}
$logo = '<img ' . implode(
' ',
array_map(
function ( $key, $value ) {
return $key . '="' . esc_attr( $value ) . '"';
},
array_keys( $logo_attrs ),
$logo_attrs
)
) . ' />';
if ( isset( $params['image']['id'] ) && $params['image']['id'] && $width_height_needed ) {
woodmart_lazy_loading_deinit( true );
$logo = wp_get_attachment_image( $params['image']['id'], 'full', false, array( 'style' => 'max-width:' . $width . 'px;' ) );
woodmart_lazy_loading_init();
}
$logo_classes = ' whb-' . $id;
if ( $has_sticky_logo ) {
$logo_classes .= ' wd-switch-logo';
}
?>
<div class="site-logo<?php echo esc_attr( $logo_classes ); ?>">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" class="wd-logo wd-main-logo" rel="home" aria-label="<?php esc_html_e( 'Site logo', 'woodmart' ); ?>">
<?php echo $logo; // phpcs:ignore ?>
</a>
<?php if ( $has_sticky_logo ) : ?>
<?php
$logo_sticky = '<img src="' . esc_url( $params['sticky_image']['url'] ) . '" alt="' . esc_attr( get_bloginfo( 'name' ) ) . '" style="max-width: ' . esc_attr( $sticky_width ) . 'px;" />';
if ( isset( $params['sticky_image']['id'] ) && $params['sticky_image']['id'] && $width_height_needed ) {
woodmart_lazy_loading_deinit( true );
$logo_sticky = wp_get_attachment_image( $params['sticky_image']['id'], 'full', false, array( 'style' => 'max-width:' . $sticky_width . 'px;' ) );
woodmart_lazy_loading_init();
}
?>
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" class="wd-logo wd-sticky-logo" rel="home">
<?php echo $logo_sticky; // phpcs:ignore ?>
</a>
<?php endif ?>
</div>