Modify/Add Links in Footer
-
Hi All,
Trying to add/modify links in the footer code. The Site is https://www.jamacob.com/. I checked footer.php and what we found was
<!-- begin footer --> <div style="clear:both;"></div> <div id="footer"> <div align="center"><ul><?php $args = array( 'depth' => 1, 'show_date' => '', 'date_format' => get_option('date_format'), 'child_of' => 0, 'exclude' => '', 'include' => '', 'title_li' => '', 'echo' => 1, 'authors' => '', 'sort_column' => 'menu_order, post_title', 'link_before' => '', 'link_after' => '', 'walker' => '' ); wp_list_pages($args); ?></ul></div> <div style="clear:both; float:none;"></div> <div >Copyright © 2010 <strong>JAMAICA COMMUNITY BOARD</strong>. All Rights Reserved.</div> </div> <?php do_action('wp_footer'); ?> </div> </body></html>
I’m guessing:
wp_list_pages($args);
is the bit where a certain list of pages is brought in. How do I access that list of pages to add or modify items on that list?Thanks
Benjamin
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Modify/Add Links in Footer’ is closed to new replies.