• <?php
    					$mediaphase_contact_phone = get_theme_mod( 'mediaphase_header_contacts_phone' );
    					if ( !empty( $mediaphase_contact_phone ) ) {
    						echo '<span class="contact-phone"><i class="fa fa-phone-square"></i> ' . esc_html( $mediaphase_contact_phone ) . ' </span>';
    					}
    					$mediaphase_contact_email = get_theme_mod( 'mediaphase_header_contacts_email' );
    					if ( !empty( $mediaphase_contact_phone ) ) {
    						echo '<span class="contact-email"><i class="fa fa-envelope"></i> ' . esc_html( $mediaphase_contact_email ) . ' </span>';
    					}
    					?>

    Should be :

    <?php
    $mediaphase_contact_phone = get_theme_mod( ‘mediaphase_header_contacts_phone’ );
    if ( !empty( $mediaphase_contact_phone ) ) {
    echo ‘<span class=”contact-phone”><i class=”fa fa-phone-square”></i> ‘ . esc_html( $mediaphase_contact_phone ) . ‘ </span>’;
    }
    $mediaphase_contact_email = get_theme_mod( ‘mediaphase_header_contacts_email’ );
    if ( !empty( $mediaphase_contact_email ) ) {
    echo ‘<span class=”contact-email”><i class=”fa fa-envelope”></i> ‘ . esc_html( $mediaphase_contact_email ) . ‘ </span>’;
    }
    ?>

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Error in header.php’ is closed to new replies.