• 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!

Viewing 3 replies - 1 through 3 (of 3 total)
  • 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

    Thread Starter cptorontocp

    (@cptorontocp)

    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">

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Looking for two plugins’ is closed to new replies.