Hi,
Just currently using an if statement so that the Entry Meta footer (includes all article tags and dates) is not shown on the Excerpt posts list .
Using the <?php if ( is_single() ) : ?>
function currently works , however, as my homepage is an actual page created in wordpress with some content - the entry meta footer is not excluded from this if statement.
Ive been trying <?php if ( is_single() && !is_home() ) : ?>
but hasn't worked.
Any suggestions as to what else I might be able to try ?