PK

ADDRLIN : /home/mannonia/www/wp-content/themes/mannoniavocat/template-parts/header/
FLL :
Current File : /home/mannonia/www/wp-content/themes/mannoniavocat/template-parts/header/branding.php

<?php
/**
 * Branding template.
 *
 */

// File Security Check
if ( ! defined( 'ABSPATH' ) ) { exit; }
?>
				<div class="branding">
					<div id="site-title" class="assistive-text"><?php bloginfo( 'name' ) ?></div>
					<div id="site-description" class="assistive-text"><?php bloginfo( 'description' ) ?></div>
					<?php
					$logo = '';
					$logo .= presscore_get_the_main_logo();

					// Do not display mobile logo on mixed headers.
					if ( ! presscore_header_layout_is_mixed() ) {
						$logo .= presscore_get_the_mobile_logo();
					}

					presscore_display_the_logo( $logo );
					unset( $logo );

					presscore_render_header_elements( 'near_logo_left' );
					presscore_render_header_elements( 'near_logo_right' );
					?>
				</div>


PK 99