次の変更を試してください。
if ($_SESSION['first_time_here'] == ''):
//SET PAGE TO CLOSED FOR OPENING
if (get_option('ub_sb_closed_on_hp') != 'yes'){
// print "
?>
if (jQuery(window).width() > 980){
jQuery('#page').css({'display':'inline','width':'300px','overflow':'hidden','margin-right':'340px'});
jQuery('#sidebar').css({'margin-left':'326px'});
}
// ";
<?php
}
?>
そしてまた:
if (get_option('ub_sb_closed_on_hp') != 'yes'){
?>
// print "
if (jQuery(window).width() > 980){
jQuery('#sidebar').delay(800).animate({'margin-left':'0px'},2100);
jQuery('#page').delay(800).animate({'margin-right':'0px','width':'666px'},2100);
}
// ";
<?php
}
?>
編集1:初期化した場所がわかりませんでし$_SESSION['first_time_here']
た。初期化していない場合は、以下の変更を試すことができます
探す:if($_SESSION['first_time_here'] == ''):
交換:if (!isset($_SESSION['first_time_here'])):