File: /home/bt667/public_html/wp-content/plugins/accelerated-mobile-pages/components/logo/logo.php
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
function ampforwp_framework_get_logo(){
global $redux_builder_amp;
$title = get_bloginfo();
?>
<div class="amp-logo">
<?php
do_action('amp_header_top');
$set_rel_to_noamp = false;
$ampforwp_home_url = user_trailingslashit( get_bloginfo('url') );
if ( true == ampforwp_get_setting('ampforwp-homepage-on-off-support') && !ampforwp_get_setting('amp-on-off-support-for-non-amp-home-page') ) {
$ampforwp_home_url = ampforwp_url_controller( get_bloginfo('url') );
}
if ( ampforwp_get_setting('amp-on-off-support-for-non-amp-home-page') && ampforwp_get_setting('amp-mobile-redirection') ) {
$ampforwp_home_url = trailingslashit( get_bloginfo('url') ).'?nonamphead=1';
$set_rel_to_noamp = true;
}
$ampforwp_home_url = apply_filters('ampforwp_header_url', $ampforwp_home_url); ?>
<?php if ( true == ($redux_builder_amp['opt-media']['url']) ) {
$alt = ampforwp_default_logo('alt');
$logo_url = $redux_builder_amp['opt-media']['url'];
?>
<a href="<?php echo esc_url( $ampforwp_home_url ); ?>" title="<?php echo esc_html( $title ); ?>" <?php if($set_rel_to_noamp){ echo ' rel="nofollow"'; } ?> >
<amp-img data-hero src="<?php echo esc_url( $logo_url ); ?>" width="<?php echo esc_attr(ampforwp_default_logo('width')); ?>" height="<?php echo esc_attr(ampforwp_default_logo('height')); ?>" alt="<?php echo esc_attr($alt); ?>" class="amp-logo" layout="responsive"></amp-img></a>
<?php if( ampforwp_is_home() || ampforwp_is_blog() ){ ?>
<div class="hide">
<?php bloginfo('name'); ?>
</div>
<?php } ?>
<?php } else { ?>
<a href="<?php echo esc_url( $ampforwp_home_url ); ?>" <?php if($set_rel_to_noamp){ echo ' rel="nofollow"'; } ?> ><?php bloginfo('name'); ?></a><?php
} ?>
</div>
<?php }
add_action('amp_post_template_css','amp_framework_logo_styles',11);
if( !function_exists( 'amp_framework_logo_styles' ) ){
function amp_framework_logo_styles(){
global $redux_builder_amp;
$max_width = '190px';
$width = (integer) ampforwp_default_logo('width');
if ( true == ampforwp_get_setting('ampforwp-custom-logo-dimensions') && 'flexible' == ampforwp_get_setting('ampforwp-custom-logo-dimensions-options') ) {
$max_width = (integer) ampforwp_get_setting('ampforwp-custom-logo-dimensions-slider');
$width = (integer) ampforwp_default_logo('width');
$max_width = ceil(($width*$max_width)/100)."px";
}elseif( true == ampforwp_get_setting('ampforwp-custom-logo-dimensions') && 'prescribed' == ampforwp_get_setting('ampforwp-custom-logo-dimensions-options') ) {
$max_width = (integer) ampforwp_get_setting('opt-media-width');
$width = (integer) ampforwp_default_logo('width');
$max_width .="px";
}
$width .= 'px';
?>
.amp-logo amp-img{width:<?php echo esc_attr($max_width); ?>}
<?php }
}