View Single Post
  #1   IP: 59.57.15.20
Old 2007-10-25, 11:29 AM
smiling smiling is offline
高级会员
 
Join Date: 2006-02-12
Posts: 502
smiling 正向着好的方向发展
Default how to add another page at wp homepage

Code:
<?php
if (is_home()) 
 { get_sidebar();
   include (TEMPLATEPATH . '/ads.php');} 
 else { get_sidebar();}
?>
the code ad ads.php at homepage, not at other pages.
Reply With Quote