16 lines
321 B
PHP
16 lines
321 B
PHP
<?php
|
|
/**
|
|
* Template part for displaying the header content
|
|
*
|
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
|
*
|
|
* @package Valier
|
|
*/
|
|
|
|
if (is_front_page()) {
|
|
get_template_part('template-parts/layout/header', 'home');
|
|
} else {
|
|
get_template_part('template-parts/layout/header', 'page');
|
|
}
|
|
|