cptorontocp
Member
Posted 3 years ago #
Hello, I was wondering if there were two plugins that perform a function.
1) A plugin that allows you to add a signature or automatic text at the bottom of every post automatically.
2) A plugin or setting that automatically aligns images center.
If anyone knows if there are these plugins, it would be greatly appreciated. Thank you!
1. You can edit your themes files or add this code to your themes functions.php file
<?php
function bfa_append_to_post($post_body_content) {
$post_body_content = $post_body_content .
'YOUR TEXT HERE ....
...MORE TEXT ...
...TEXT ( or HTML) ...';
return $post_body_content;
}
add_filter('the_content', 'bfa_append_to_post');
?>
2. You can edit your themes style.css
cptorontocp
Member
Posted 3 years ago #
Thanks, what would the code be to align images center? I found a plugin for the signature.
<img src="" style="margin-left:auto;margin-right:auto">