again, really make sure that is your current sidebar, because i have the same code and the links are only showing on index.
to make sure, just write something and upload to see if it is:
code:
this is my current sidebar!!
<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
<?php get_links_list(); ?>
<?php } ?>
-----------------------------------
ok now i litlle hack, if your blog is in your document root like
www.myurl.com try:
<?php /* If this is the frontpage */
if ( $_SERVER['REQUEST_URI'] == '/') { ?>
<?php get_links_list(); ?>
<?php } ?>
else like
www.myurl.com/heremyblog/
<?php /* If this is the frontpage */
if ( $_SERVER['REQUEST_URI'] == '
/heremyblog/') { ?>
<?php get_links_list(); ?>
<?php } ?>
just another suggestion, I did not prove
i hope help |badidea|