Community Forums › Forums › Design Tips and Tricks › In PYT Theme, How Do I Show Author for Each Post?
Tagged: Author, post, Pretty Young Thing
This topic contains 5 replies, has 2 voices, and was last updated by pamlita 3 months, 4 weeks ago.
-
AuthorPosts
-
January 29, 2013 at 2:01 pm #16081
Hi,
My sister and I have a blog, Housewives of Frederick County. We alternate submitting posts to the blog. However, I cannot find where we can indicate who authored each post. I would like for each of us to get credit for our individual posts.
Thank you!
Pam
January 29, 2013 at 2:19 pm #16090You can enable the author box in your user profile, which will enable a box at the bottom of the post with your gravatar and bio. If you want the author listed in the post info delete this from functions.php
/** Customize the post info function */ add_filter('genesis_post_info', 'pretty_post_info_filter'); function pretty_post_info_filter( $post_info ) { if ( ! is_page() ) { $post_info = '[post_date] [post_comments] [post_edit]'; return $post_info; } }
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
February 19, 2013 at 10:52 am #21362Thanks so much John. Sorry for the delay in my response. Finally fixed it and it worked.
Thanks!
Pam
February 19, 2013 at 10:54 am #21363One other question – my sister and I both post on this particular blog and would love a signature image to include in our posts. I found a tutorial on how to get the url in the functions.php, but can this be done for more than one author?
Thanks!
Pam
http://www.housewivesoffrederickcounty.com
February 19, 2013 at 12:45 pm #21391You can enable the author box in your Profile settings and enter a bio there as well. The image will pull the gravatar associated with the author’s email.
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
February 19, 2013 at 1:58 pm #21426Thanks John. But what I’m trying to do is just add a signature image (that says my name) to the end of my posts. I found this tutorial as to how to do it http://prettydarncute.com/2012/05/add-a-signature-to-your-genesis-wordpress-blog-posts/
However, if I enter this information into the functions.php, all posts, including my sister’s posts will have my signature image.
Is there a code to use to say if the author is Pam, use this url (image), and if the author is Terri, use this url (image).
Here is my image that I want to show up at the end of my posts only http://housewivesoffrederickcounty.com/wp-content/uploads/2013/02/Signature-PicMonkey.jpg
Thank you!
Pam
-
AuthorPosts
You must be logged in to reply to this topic.