| Server IP : 145.239.37.162 / Your IP : 216.73.217.46 Web Server : Apache System : Linux webm003.cluster130.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaa ( 38250) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaa/www/wp-content/plugins/wp-accessibility-helper/trunk/inc/ |
Upload File : |
<?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; ?>