Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
You have two options:
1. create a child theme, copy the header.php file from the parent theme and paste the one you need in the place you need <div>
2. create a child theme, find the hook in the parent theme, in the place where you need it <div>
and hang it on this hook function
add_action( 'wp_body_open', 'start_div' );
function start_div() {
echo '<div id="start" class="start">';
}
</div>
, otherwise your whole layout will go
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question