PHP简单“如果页面ID是xyz,则显示此<div>”</div>

时间:2014-05-23 11:35:14

标签: php wordpress if-statement

我不熟悉PHP,但我想在Wordpress中创建类似的东西:

if page id="123"
show this -> <div class"option one">my content</div>

if page id="124"
show this -> <div class"option two">my other content</div>

if page id="125"
show this -> <div class"option three">my other content 2</div>

代码将放在我的page.php

那么确切的PHP代码是什么?

1 个答案:

答案 0 :(得分:3)

例如,您有page_id 123124 ...等 这样做:

<?php   if ( is_page(123) ) { 
?>
 <div class="option one">my content</div>


<?php } elseif( is_page(124) ) {

?>
 <div class="option one">abc content</div>

<?php } 
else {
echo  '<div class="option one">any content</div>';
}

?>