Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Php include help
#1
i am trying to add this to my template.php but it is not showing. Please help

Quote:<?php
if ($current_page_filename == 'index.xml') {
include("shout/shoutbox.php");
}
?>
Reply
#2
Try this:
Code:
<?php
  if (return_page_slug()=='index') {
    include("shout/shoutbox.php");
  }
?>
GetSimple's template tags: http://get-simple.info/docs/theme-codex
Reply
#3
Thanks alot
Reply




Users browsing this thread: 1 Guest(s)