| Server IP : 68.178.247.200 / Your IP : 216.73.217.50 Web Server : Apache System : Linux p3plzcpnl489463.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64 User : x9dppmxs4rgd ( 8559391) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/x9dppmxs4rgd/www/wp-content/plugins/wp-accessibility-helper/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; ?>