• Hello, I want to change the footer on our website at http://www.tiffinparks.com. Here is the code that is currently for the footer on the site. What or where do I change to get the code to say what I want it to say? Thanks!!

    <footer id=”colophon” class=”site-footer” role=”contentinfo”>
    <div class=”site-info”>
    <?php do_action( ‘expound_credits’ ); ?>
    </div><!– .site-info –>
    </footer><!– #colophon –>

Viewing 2 replies - 1 through 2 (of 2 total)
  • I’ve downloaded the theme you’re using and taken a look.

    The code you’ve pasted has an action hook which is used to display the footer content.

    Add the following to your functions.php

    function tiffin_footer_content( $text ) {
        return 'Enter your footer text here...';
    }
    add_filter( 'expound_credits_text', 'tiffin_footer_content' );

    @tiffinpa – please post in the Expound Theme’s own forum:

    http://ww.wp.xz.cn/support/theme/expound

    Also, do not make any modifications to theme files – as they will be lost when the theme is updated. You should be using child theme if you want to change theme files –

    http://codex.ww.wp.xz.cn/Child_Themes

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘changing the footer’ is closed to new replies.