Hi!
I want to insert this:
<div class="meta-container">
<div class="meta-avatar">
<? echo get_avatar( get_the_author_meta('user_email'), $size = '150'); ?>
</div>
<div class="meta-info">
<div class="meta-author meta-text">
<em>written by</em>
<strong><?php the_author(); ?></strong>
</div>
<div class="meta-date meta-text">
<em>first posted on</em>
<strong><?php the_date(); ?></strong>
</div>
<div class="meta-modified meta-text">
<em>last updated on</em>
<strong><?php the_modified_date(); ?></strong>
</div>
</div>
</div>
in position: after_entry_title. specifically, I want to replace the regular post’s meta. How can I do this in functions.php of my child theme, without using hooks? I don’t like the hooks as they are more difficult to move between sites (i have several blogs.)
GeneratePress 2.2.2
GP Premium 1.7.8