第一件事是第一件事
您可以使用移动插件创建专门针对移动用户的网站
我通常使用WPtouch
要检查用户是否正在使用移动浏览器/代理,您还可以使用功能。。。这意味着您需要不时更新用户代理。。。
Here is an example function from eric stokes site:
http://erikastokes.com/php/how-to-test-if-a-browser-is-mobile.php
您可以将该函数嵌入到函数中。php或将其包含到函数中。php
然后可以检查并创建条件链接,例如:
<?php
if(is_mobile()) {
echo \'<a href="http://www.mobile.com">i am using mobile</a>\';
}
else {
echo \'<a href="http://www.desktop.com">i am using a desktop computer</a>\';
}
?>
。
Example relating to the answer you found here:
$image = wp_get_attachment_image( $id, $size, false );
// if it\'s set to not show the image link
if(isset($attr[\'link\']) && (\'none\' == $attr[\'link\']) && !is_mobile() ){
// then just show the image
echo $image;
} else {
// else show the image wrapped in a link
$link = wp_get_attachment_url($id);
echo "<a href=\\"$link\\">$image</a>";
}
希望这有帮助<干杯,萨吉夫