OK I figured it out. You need to reverse the order of this code from:
<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
<?php get_links_list(); ?>
to
<?php get_links_list(); ?>
<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
Thanks to every one for their responses. Have a great weekend.
|