当移动屏幕尺寸为600px
时,我将从主页重定向到另一个页面。但这仅在我登录管理面板而不在用户面板(在wordpress
中)有效时有效。
$(document).ready(function(){
var url = $(location).attr('href');
var screen_width = $(window).width();
var custom_url ="http://www.thelostandfound.com/"
if(url == custom_url && screen_width < 680 ) {
window.location.replace('http://www.thelostandfound.com/m-home/');
} else {
window.location.replace('http://www.thelostandfound.com/');
}
});