Way to use one template but be able to call different top graphics?
You’re looking for the function is_page() You could use the page id, the title or the slug in the function. <?php if ( is_page(‘services’) ) : ?> <img…services <?php elseif ( is_page(‘customer’) ) : ?> <img…customer <?php else : ?> <img..default <?php endif; ?> Another option is to use the post thumbnail feature from wordpress, … Read more