0

我正在尝试加载特定于页面的内容。我知道使用<?php if(is_front_page() ) : ?>的是首页我将如何选择 /teams/ 或 /groups/ 之类的页面

4

1 回答 1

1
<?php if(is_page('teams') ) : ?>

或者

<?php if(is_page('teams','groups') ) : ?>

查看更多: http ://codex.wordpress.org/Conditional_Tags#A_PAGE_Page

于 2012-06-11T11:02:27.870 回答