Linux webm002.cluster126.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
/
home
/
ariannadhf
/
www
/
wp-content
/
plugins
/
wp-accessibility-helper
/
trunk
/
inc
/
/home/ariannadhf/www/wp-content/plugins/wp-accessibility-helper/trunk/inc/custom-logo-position.php
<?php /** * WAH Custom logo position * * @package WAH */ $wah_custom_logo_position = get_option( 'wah_custom_logo_position' ); if ( $wah_custom_logo_position ) : $wah_logo_top = get_option( 'wah_logo_top' ); $wah_logo_right = get_option( 'wah_logo_right' ); $wah_logo_left = get_option( 'wah_logo_left' ); $wah_logo_bottom = get_option( 'wah_logo_bottom' ); ?> <style media="screen" type="text/css"> body #wp_access_helper_container button.aicon_link { <?php if ( $wah_logo_top || ( '0' === $wah_logo_top ) ) : ?> top:<?php echo is_numeric( $wah_logo_top ) ? esc_html( $wah_logo_top ) : ''; ?>px !important; <?php endif; ?> <?php if ( $wah_logo_right || ( '0' === $wah_logo_right ) ) : ?> right:<?php echo is_numeric( $wah_logo_right ) ? esc_html( $wah_logo_right ) : ''; ?>px !important; <?php endif; ?> <?php if ( $wah_logo_left || ( '0' === $wah_logo_left ) ) : ?> left:<?php echo is_numeric( $wah_logo_left ) ? esc_html( $wah_logo_left ) : ''; ?>px !important; <?php endif; ?> <?php if ( $wah_logo_bottom || ( '0' === $wah_logo_bottom ) ) : ?> bottom:<?php echo is_numeric( $wah_logo_bottom ) ? esc_html( $wah_logo_bottom ) : ''; ?>px !important; <?php endif; ?> } </style> <?php endif; ?>