我写的时候:
<?php if ( 1==1 ) : ?>
<img class="up" src="/wp-content/themes/template/img/up.png">
<?php endif ?>
正在工作,我的意思是显示“正在工作”,但是当我写时:
<img class="up" src="/wp-content/themes/template/img/up.png">
它什么也不显示,如果我放:
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
IF外部语句正在显示该图像。请帮忙!
答案 0 :(得分:1)
某些php版本不支持“:” estructure。尝试以下方法:
<?php if ( 1==1 ) { ?>
<img class="up" src="/wp-content/themes/template/img/up.png">
<?php } ?>