READ FIRST: Proceed with caution if you are not comfortable customizing your theme. As with all modifications of your website, it’s so important you keep a backup copy of your functions file, and that you have SFTP/FTP access to your site in the event you accidentally crash your site.
This tutorial is only compatible with sites currently using the Genesis framework from StudioPress.com. If you’re using any of Pretty Darn Cute Design’s Premade Themes, this will work like a charm for you. It’s pretty simple ?
How to Add a Signature to Your WordPress Blog Posts
Create your signature imageUpload your signature image via your media libraryCopy the urlPaste it into the following code where it says “IMAGE URL HERE”Paste the entire code into your functions file, functions.php
// Add Signature Image after single post | |
add_action(‘genesis_entry_footer’, ‘custom_include_signature’, 1); | |
function custom_include_signature() { | |
if(is_single()) { ?> | |
<img src=” Url Here” alt=”Signature” /> | |
<?php }} |
Download the How to Start Blogging Guide
Explore this FREE GUIDE to take a deep dive into how to start blogging to make money. Get a PDF version of this guide right to your email, plus weekly tips from our blogging experts at BizBudding.
