我想为移动和桌面用户运行不同的脚本,因为我使用Mobble wordpress插件,让我使用is_handheld();检测手持设备。我对此很新,所以请你告诉我我哪里做错了?它给出了一个错误。谢谢
<?php
if ( !is_user_logged_in() ) :
?>
<?php
if ( !is_handheld() ) {
echo"<script type="text/javascript" src="/source1"></script>”;
}
else {
echo"<script type="text/javascript" src="/source2"></script>”;
}
<?php
endif;
?>
<?php
endif;
?>
答案 0 :(得分:1)
这应解决您的错误
<?php
if ( !is_user_logged_in() ) :
if ( !is_handheld() ) {
echo '<script type="text/javascript" src="/source1"></script>';
}
else {
echo '<script type="text/javascript" src="/source2"></script>';
}
endif;
?>