Another Question:
Looking at page titles, I would like to add an image and text. I’ve added the Page.php to my Child Theme folder and started to look for <?php the_title(); ?>
, but there was none. From what I’m reading, below the <?php the_title(); ?>
I need to add
<?php if ( is_page('pets') ) {
echo '<div class="pets">';
} else {
echo '';
}
if ( is_page('products') ) {
echo '<div class="products">';
} else {
echo '';
}
?>
Of course some of those titles would be changed. Anyways, I’m stuck at this point.
Is there an easier way such as a plugin or would you have some code for me?
Thanks