if ( window.location.href.search('#!/') == -1 && window.location.href !== et_site_url && window.location.href !== ( et_site_url + '#' ) ) {
access_without_ajax = true;
$et_main_content.css( { opacity : 1, top : '77px', width : '800px', height : ( et_window_height - 200 ), marginTop : 0, marginLeft : '-400px' } );
$logo_area.hide();
$main_menu.hide();
$et_footer_menu.css({'display':'block','opacity':1, bottom: '0'})
$('#content').appendTo( $et_page_content );
$et_main_content.jScrollPane( { animateScroll: true } );
et_center_content_area();
et_init_scripts();
} else if ( window.location.href === et_site_url || window.location.href === ( et_site_url + '#' ) ) {
$et_main_content.css( { 'margin-left' : '-' + ( content_width / 2 ) + 'px', top: ( ( et_window_height - $et_main_content.height() ) / 2 - 100 ) } ).animate( { opacity : 1, 'top' : ( ( et_window_height - $et_main_content.height() ) / 2 ) }, fade_in_speed, 'easeInOutQuad' );
在Wordpress中创建页面时,这是在我的URL中间添加/#!/ right。我如何摆脱这种垃圾?