2014-01-20 58 views

回答

0

寫在你的functions.php: -

add_action('wp_head', 'my_page_redirect', PHP_INT_MAX); 
function my_page_redirect(){ 
    if(!is_front_page()) { 
?> 
<script type='text/javascript'> 
    setTimeout(function() { 
     document.location = "<?php echo site_url(); ?>"; }, 500 
    ); 
</script> 
<?php 
    } 
} 
+0

的感謝!輝煌 – niksos

相關問題