Post footer

Support Area Forums Elite Post footer

Viewing 2 posts - 1 through 2 (of 2 total)
URL to the page in question:
  • Author
    Posts
  • #17205
    Avatar photoJazz Lover
    Participant

    Hi Bill, is it possible somehow to add a post footer to the articles only (not pages)? I’d like to add some hooks (php) and shortcodes, maybe background image like on attached screeshot.

    #17215
    Bill Robbins
    Moderator

    Great question. There is a file in the theme called single.php that controls the display of your individual blog posts. You could add in any custom php or other items there you’d like to and they will appear on every post. You’ll probably want to add any code right above this section:

    
    <?php
    					// If comments are open or we have at least one comment, load up the comment template
    					if ( comments_open() || '0' != get_comments_number() )
    						comments_template( '', true );
    				?>
    

    so it appears above the comments block. If you have any questions, just let me know.

    Take care,
    Bill

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Post footer’ is closed to new replies.