View Single Post
Old 2006-04-10, 02:05 AM   #1
Dev~>
Banned
 
Join Date: Mar 2006
Location: Uaregay
Posts: 11
Send a message via ICQ to Dev~>
Lightbulb suggest 2

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|
Dev~> is offline   Reply With Quote