Hello, how can I place a div on on the bottom of every blog and page? This would be used like a signature, except I will be using two images, one floating left and one floating right.
1. The PHP conditional I provided should keep it away from excerpts – did you include the entire snippet I provided? I just tried it on my localhost and it didn’t include the div in my excerpts. Make you check the “Execute PHP” checkbox.
2. You can do this:
<?php if ( is_single() || is_page() ) : ?>
<div class="your-class-here">
YOUR DIV AND HTML IN HERE
</div>
<?php endif; ?>