• Hi just wondering how to add additional message to the copyright text in the bottom of footer. This seems to be the default theme code.

    <div id="copyright-wrap">
        <div id="copyright">
        &copy; <?php echo date('Y'); ?>  <?php bloginfo( 'name' ) ?>
        </div>
        <!-- END copyright - theme by WPExplorer.com -->
    </div><!-- END copyright-wrap -->

    So it comes up like: “© 2013 Website Name”

    I just want to add more to it, so its like:

    I just want it to say “© 2013 Website Name – Reviews and Ratings of Electronics – All Rights Reserved.”

Viewing 1 replies (of 1 total)
  • Hello!

    If you would like to hardcode it into the theme, meaning that there is no settings page inside the WordPress Dashboard where you could change this later, than here you go:

    <div id="copyright-wrap">
        <div id="copyright">
        &copy; <?php echo date('Y'); ?>  <?php bloginfo( 'name' ) ?> - Reviews and Ratings of Electronics - All Rights Reserved.
        </div>
        <!-- END copyright - theme by WPExplorer.com -->
    </div><!-- END copyright-wrap -->

    I should mention, that you should always make this kind of changes inside a child theme, because if you update your theme or WordPress, it is most likely that this modification will be lost. You can find a very good detailed instruction page here: codex.wordpress.org/Child_Themes

    I hope this helps. If you have any more questions, just drop a line here, I am happy to help.

    Greetings,
    Balint

Viewing 1 replies (of 1 total)

The topic ‘Adding More to Copyright Footer’ is closed to new replies.