PHP If和<img/>未显示图像

时间:2018-09-07 22:10:31

标签: php wordpress

我写的时候:

<?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外部语句正在显示该图像。请帮忙!

1 个答案:

答案 0 :(得分:1)

某些php版本不支持“:” estructure。尝试以下方法:

<?php if ( 1==1 ) { ?>
        <img class="up" src="/wp-content/themes/template/img/up.png">
<?php } ?>