• Hi all,
    I created the testing blog in that I found the footer message like
    Proudly powered by WordPress .
    How to suppress those footer message without editing the core file there is the options to remove the footer in the blog.

    Any one Much appreciated.

    Thanks,
    vicky

Viewing 5 replies - 1 through 5 (of 5 total)
  • modify the footer.php file

    Thread Starter vicky081

    (@vicky081)

    Thanks for your reply . But i need to know to create the custom function to remove the footer in the blog.

    Create a child theme and then edit the file. http://codex.wordpress.org/Child_Themes

    Thread Starter vicky081

    (@vicky081)

    Yes Your Idea to create the child theme is good .But i expect that i need the functions to remove those footer message.

    For example:

    <?php
    function copyright() {
    echo "this is the footer message";
    }
    add_action('wp_footer','copyright');
    ?>

    I need to add the footer in the wp_footer hook ,I need if any other hook to remove the footer message.

    Is your theme displaying the copyright message by a HOOK? Otherwise you can’t overwrite the message.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Remove footer text in the wordpress blog’ is closed to new replies.