Community Forums › Forums › Archived Forums › Design Tips and Tricks › How do I change the post info for posts only and not pages
Tagged: .post-info
- This topic has 6 replies, 3 voices, and was last updated 12 years, 7 months ago by
Brad Dalton.
-
AuthorPosts
-
June 5, 2013 at 11:54 am #44178
srousseu
MemberI have tried to change the post info using genesis simple hooks and by putting the following code into the genesis_before_post_content Hook box.
<divclass="post-info">
Last updated on<spanclass="time"><?php the_modified_time('F j, Y'); ?></span> <spanclass="author">by <?php the_author_posts_link(); ?></span> <spanclass="post-comments"><a href="<?php the_permalink(); ?>#respond"><?php comments_number('Leave a Comment','1 Comment','% Comments'); ?></a></span> <aclass="post-edit-link"><?php edit_post_link('(Edit)','',''); ?></a>
</div>It worked, but now it puts the post info (Date, Name, etc.) on not only my posts, but all my pages too! How can I change it for just posts?
Thanks in advance!
http://www.healthywealthyexpat.comJune 6, 2013 at 9:33 am #44328Brad Dalton
ParticipantAdd a conditional tag for posts only:
is_single()
or
!is_single()
Code not displaying? Grab it on Github.
This code needs to be pasted at the end of your child themes functions.php file from the view raw link using a text editor.
June 16, 2013 at 7:36 am #46251esanger
MemberBrad... always value your advice!
I had the same problem with adding the post info in Simple Edits. The post info showed not only on my posts, but also my pages.
Took your advice. Copied the view raw link and pasted it at the end of my child themes function.php file.
(had to delete my Simple Edits code first.. gave a system error)
Now, nothing is showing at the top of my posts. Previously, it showed.
Any ideas? Thanks in advance.
June 16, 2013 at 10:49 am #46261Brad Dalton
ParticipantIts showing on this post http://www.healthywealthyexpat.com/welcome/
Can you please link to a post it snot displaying on thanks.
August 28, 2013 at 7:14 am #59199srousseu
MemberThanks for the advice, Brad. Sorry, I've been on a two month hiatus and just back working on my site. That wasn't me replying above your last comment, but I did try what you suggested and it still shows up on all my pages (forum, archives, etc.) I only want the 'Last updated on...' to show up on posts. Any other ideas anyone? Thanks!
August 28, 2013 at 6:21 pm #59359Brad Dalton
ParticipantPHP code generally will not work if you have the Genesis Simple Edits plugin activated as well because it over rides the code.
The CSS classes are also different for XHTML and HTML 5 enables child themes.
This is what i use in the functions file. Credit to Greg Rickaby who wrote the original code i modified.
https://gist.github.com/braddalton/6373014
August 28, 2013 at 6:31 pm #59361Brad Dalton
Participant -
AuthorPosts
- The forum ‘Design Tips and Tricks’ is closed to new topics and replies.