我不熟悉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代码是什么?
答案 0 :(得分:3)
例如,您有page_id
123
,124
...等
这样做:
<?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>';
}
?>