This tutorial is only compatible with sites currently using the Genesis framework from StudioPress.com. If you’re using either of Pretty Darn Cute Design’s Premade Themes, this will work like a charm for you. It’s pretty simple
// Add Signature Image after single post
add_action('genesis_after_post_content', 'custom_include_signature', 1);
function custom_include_signature() {
if(is_single()) { ?>
<img src="IMAGE URL HERE" alt="Signature" />
<?php }}
My final product
// Add Signature Image after single post
add_action('genesis_after_post_content', 'custom_include_signature', 1);
function custom_include_signature() {
if(is_single()) { ?>
<img src="http://demos.prettydarncute.com/modern_blogger/wp-content/uploads/2011/10/signature1.png" alt="Signature" />
<?php }}
Scroll down to the end of the post on this modern blogger demo to see it in action:
http://prettydarncute.com/demos/modern_blogger/?p=116


May 27, 2012 at 12:08 pm
Very nice guide, thanks for sharing it
June 4, 2012 at 10:54 am
No problem
September 29, 2012 at 12:36 pm
Thanks for the info, very helpful!
getrichandfree.net
July 16, 2012 at 6:38 pm
I can`t seem to find the spot where to paste the code. Any help…
Thanks!
July 16, 2012 at 6:40 pm
You paste it at the bottom of your functions.php file
August 26, 2012 at 9:01 pm
Hi! Thanks for this post! I love the style of your post content archives on your main blog page. Would you consider doing a tutorial for them?
August 27, 2012 at 12:46 pm
Thank you! I will definitely put it on my to do list
August 27, 2012 at 7:22 pm
Awesome! Thank you so much. I’ve started figuring out myself with Inspector..hope that’s ok! Love your site…and all of the ones you’ve designed! Very cool
August 28, 2012 at 6:33 pm
Hi Lindsay
Does this work on all themes ? I’m using Luscious and followed your tutorial, but my signature is not showing up.
August 29, 2012 at 3:20 pm
Hi Carolyn! It should work on all themes. I’m not familiar with Luscious, there may be a conflict in the functions file?
August 30, 2012 at 3:47 pm
Hi! I hope you can help. I followed all the steps and have sucessfully overwritten the old functions file, but I seem to not have the correct url of my signature image. Seems pretty simple but what I did isn’t working. I store all of my custom files right in with the adorable theme images. I would really appreciate your help in figuring out the html to insert. Thanks!!
August 30, 2012 at 4:28 pm
It’s best to upload it via your media library in your dashboard for this. I just followed the tutorial on the adorable demo and the signature is appearing.
August 30, 2012 at 4:48 pm
Works! Learning something new on Genesis every day! Thank you so much for your quick reply.
August 30, 2012 at 4:49 pm
Wonderful! No problem
I’m glad to hear that! Genesis is amazing, and actually pretty fun to learn.
September 12, 2012 at 6:19 pm
Thanks for this tip, Lindsey – I’m a new Modern Blogger theme owner, and am still customizing my site. A post signature is definitely something I will want!
September 12, 2012 at 7:15 pm
Yikes! I just created the signature, and added it to my blog, but I think I screwed up something in my functions.php file, because now my blog pages have the chevron (modern blogger theme) all the way across the screen…
October 24, 2012 at 3:38 pm
I apologize for just now replying to this, but it looks like you’ve got it up and running correctly
Your site looks fab!
October 23, 2012 at 5:24 pm
Perfect! Just added mine
Thanks so much!
October 24, 2012 at 3:38 pm
No problem!
October 24, 2012 at 9:31 pm
Hi Lindsey,
Great tutorial! I need to take it a step further for a current project I’m working on: it’s a blog that features lots of guest bloggers, and I only want the post signature to show up for the main author of the blog – I thought I could add a conditional statement for if the author is an admin in WordPress. The code you listed above works great…but when I try to add the additional statement, the post signature doesn’t appear anymore. Here’s what I’m doing:
add_action(‘genesis_after_post_content’, ‘custom_include_signature’, 1);
function custom_include_signature() {
$var = get_the_author_meta(‘user_level’);
if(is_single() && ($var == 1)) { ?>
<?php }}
Any ideas?
Any ideas?
October 24, 2012 at 9:34 pm
Ugh – the comment cut out a little snippet of code: the insertion of the image. It *does* appear in the code I’m working with.
November 2, 2012 at 1:36 pm
Hi! Thanks for this tutorial! I do have a few issues maybe you can help me with. The signature ends up beneath the Relates Posts list after my blog posts and it keeps the default border around the signature.
Any thoughts?
Thanks!
November 15, 2012 at 12:12 pm
This will be so helpful because my Mom and I write our blog together. I know that at the top it says who the author is but I’m not sure if the readers recognize that. It will be nice to add some personality to our signatures and distinguish our posts in that way as well.
December 3, 2012 at 8:29 am
How can this be done with multiple authors? I cannot find a good plugin that works AND has multiple authors anywhere
December 3, 2012 at 10:21 am
I would just use the author box for those instances. You can find this option under “Users” select the user and check the box next to “Enable Author Box on this User’s Posts?” and save
December 12, 2012 at 4:16 pm
Just what I was looking for!! Thank you so much for the easy to understand (and implement!) code and directions
December 13, 2012 at 6:07 pm
Thanks for posting! Going to try it right now!
December 20, 2012 at 9:32 pm
Hi Lindsey,
I wonder if you can help me with some code. I have a client who has come to me wanting me to add a signature under her posts, but not under her guest posts.
She is using this tag to add a signature under all posts on WordPress (not Genesis):
Signature text is here…
It works on the site at present, but she would like to exclude that signature from showing up on her guest posts…which is understandable.
She has already tried this for example:
Signature text is here…
…but then the signature doesn’t show at all on her own posts.
Do you know the line of code or have any ideas?
If so that would be wonderful!
December 20, 2012 at 9:51 pm
Oops…no php code is showing.
January 25, 2013 at 9:08 am
Hi Lindsay,
Thanks so much for this! I’m using it with the Modern Blogger theme (which i love by the way! Still trying to learn to customise it properly but I’m getting there!)
However, the signature is appearing BELOW my share buttons which looks a bit unusual. Is there a way around this at all?
Thanks!
Karen x
March 21, 2013 at 8:36 am
I am trying to add my signature following these instructions . I went to appearance, editor and then to my functions.php. and added the code you gave us with the link to my picture included. I updated and didn’t see my signature. Can you help me to know what I may be doing incorrectly? Thanks!
April 21, 2013 at 9:15 am
This is usually an error in the image path, just be sure the image url is inserted correctly and the original code is in tact
March 27, 2013 at 7:24 pm
Thanks for you nice clear tutorials.
April 20, 2013 at 6:29 pm
just in case you didn’t understand, meant using html instead of image under every post.
April 21, 2013 at 9:15 am
No problem! Thanks for your comment
April 20, 2013 at 6:27 pm
instead of doing an image under posts, could you do something like this instead?
http://farm9.staticflickr.com/8262/8666089685_1b84eb4f70_b_d.jpg
i’ve been looking all over and can’t find anything.
thanks,
john
April 21, 2013 at 9:14 am
This might be what you’re looking for, John
http://wordpress.org/extend/plugins/total-facebook/
May 18, 2013 at 8:11 pm
Hi there- thanks for the advice. Where exactly in my Genesis theme is the function.php file? Am I missing it? I’d love to add the code for a signature. Thanks! Love your site!
May 29, 2013 at 12:09 pm
Hi Lindsey,
Thanks for this, it is exactly what I needed!
The only issue I’m having is the signature is displaying below the Jetpack share icons so it looks bad as it needs to be right after the post above the share buttons.
I tried changing the hook and replacing with a few other hooks but nothing seemed to work.
Do you know how I can get the signature to display above the share buttons, directly below the post?
Here is a page on a test site I’m working on so you can see what I mean:
http://blogaholictest.com/blog/2013/03/13/224/
Thanks so much!
May 31, 2013 at 7:30 am
Thanks for your tutorial, it was really helpful, I implemented in my site MFIBLOGGER. It run on generate template. But the only thing this: there seem to be a lot of space between between the end of the post and the signature. ALthough I have resolved it. But Thanks for the guide..simple and straight to point.
June 5, 2013 at 9:22 pm
This tutorial seems pretty simple to follow how do I go about making a signature?
June 14, 2013 at 10:36 am
You can use any image editing software, I use Photoshop
June 14, 2013 at 10:35 am
Hi Lindsey!
I have the Momprenuer theme, and when I add the code to my functions.php it crashes my site. I get the one line error code across the top of my site.
Can you help me with this?
Thank you,
Stacy Molter
June 14, 2013 at 11:13 am
Hi Stacy, this happens when you alter the existing code or do not copy the signature code correctly. I would try it again and be sure and leave the existing code untouched