• Resolved xayan123

    (@xayan123)


    The title of this topic says it all;
    My question is How do i change the footer.php to show links of my choice?

    The code of my footer.php is :

    <?php
    //if sidebar is large-1 the left side
    if(check_position_of_component('sidebar', 'left'))
    	get_sidebar();
    
    ?>
    
    <footer id="main-footer" class="main-footer">
        <?php
    
        if (!is_404())
            get_sidebar('footer'); //Add footer sidebar
        ?>
        <div id="footer-bottom">
            <div class="row">
                <div class="large-4 columns">
                   <?php echo __HARMONUX::option( 'title_tagline_footer' ) ?>
                </div>
                <div class="large-12 columns footer-navigation">
                    <?php wp_nav_menu(array('theme_location' => 'footer_pages', 'container' => false, 'depth'=>1)); ?>
                </div>
            </div>
        </div>
    </footer>
        <?php wp_footer(); ?>
    </body>
    </html>

    I looked everywhere to edit the coding and change the links but i failed. I’m new to WordPress so i’m having difficulty.
    Any help would be greatly appreciated, Thank you.

  • The topic ‘How do i change the footer.php to show links of my choice?’ is closed to new replies.