• Good morning,
    I was hoping you can help me edit the footer code to take out the default text and edit it to say Copyright 2016 on the left side and some contact info for the business on the right side? Thanks in advance for your assistance.
    Best regards,
    Tara

    Default Footer Text

    <?php
    /**
     * The template for displaying the footer.
     *
     * Contains the closing of the #content div and all content after
     *
     * @package icyNETS Simplic
     */
    
    ?>
    
    </div><!--.container-->
    
    <footer id="colophon" class="site-footer" role="contentinfo">
    <div class="container">
    <div class="site-info">
    <?php icynets_simplic_copyright(); ?>
    </div><!-- .site-info -->
    </div><!-- .container-->
    </footer><!-- #colophon -->
    <!--.hide and apply smooth scroll-->
    <a href="#"> <span id="toTopHover" style="opacity: 1;"> </span></a>
    
    <?php wp_footer(); ?>
    
    </body>
    </html>
Viewing 1 replies (of 1 total)
  • You could make a child theme and then define a new function named icynets_simplic_copyright in your child theme’s functions.php:

    <?php
    function icynets_simplic_copyright() {
      ... new code goes here ...
    }
Viewing 1 replies (of 1 total)

The topic ‘Edit current footer text’ is closed to new replies.