larsm66 0 Report post Posted December 8, 2009 I want to add a terms and conditions link to the footer of every page but I don't need it to be a page or topic for the top navigation. How can I add a single link to the footer for this? Share this post Link to post Share on other sites
Andrew 207 Report post Posted December 8, 2009 I would edit the 'footer.php' file and add another 'list' element `` to the end of this code: ` Home <?php $frontpage_id = get_option('page_on_front'); global $bbpress_forum; if($bbpress_forum && pagelinesforum('exclude_pages')){ $forum_exclude = ','.pagelinesforum('exclude_pages');} else{ $forum_exclude = '';} wp_list_pages('sort_column=menu_order&exclude='.$frontpage_id.$forum_exclude.'&depth=1&title_li=');?> ` Just before the `` Share this post Link to post Share on other sites
larsm66 0 Report post Posted December 8, 2009 I will give this a try - thanks. Will this change be effected if you have an update to the theme? Share this post Link to post Share on other sites
Andrew 207 Report post Posted December 8, 2009 Yes, unfortunately it will. Share this post Link to post Share on other sites