wordpress给单篇文章设置模板
- Wednesday, December 17, 2008, 22:00
- Wordpress
- 830 views
- Add a comment
有时候你会想给某篇文章单独设置个模板或者加一段内容,比如一段PHP代码,又不想或者就不能直接加在文章里,就可以在模板的single.php中加入is_single() 函数。
比如:<php if ( is_single(’265′) ) { include (‘special.php’); } ?>
注意开头php那里少了个?,这句话就是对ID为265的文章加入special.php里的内容。
将这句话放在single.php里的某个位置,然后在模板文件夹里新建一个special.php的文件,加入需要的内容就行了。
更多函数的使用,请参考 Conditional Tags
还有篇讲模板技巧的。
Popularity: 9% [?]
Write a Comment
Gravatars are small images that can show your personality. You can get your gravatar for free today!

