where exactly do you want the signature?
– after the content?
try to add a filter to functions.php of your theme; something like:
add_filter('the_content','add_signature');
function add_signature($text) {
global $post;
if($post->post_type == 'post') $text .= '<div class="signature">my signature text; could be a html image tag as well</div>';
return $text;
}
– after the line ‘posted in:… ‘?
you would need to edit index.php and single.php (and the other template files where you want to have the signature; https://codex.www.ads-software.com/Template_Hierarchy )
find the line with ‘endwhile;’ of the loop;
add the signature code, for instance <div class="signature">my signature text; could be a html image tag as well</div>
, just before this line.
always make a backup copy of your theme files before editing
https://codex.www.ads-software.com/The_Loop_in_Action
https://codex.www.ads-software.com/The_Loop
you can add formatting for the signature into style.css, for instance using the example code:
.signature { ... }