Wordpress使用wpu redirect()重定向
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress使用wpu redirect()重定向相关的知识,希望对你有一定的参考价值。
This needs to be run on an action, or at least I wanted able to get it to run outside of an action, I suggest template_redirect. More information at the link.
// The Base Function wp_redirect('http://www.urlofsite.com/path/to/location',301); // In Use Example add_action('template_redirect', 'redirect'); function redirect(){ if($redirect){ exit; } }
以上是关于Wordpress使用wpu redirect()重定向的主要内容,如果未能解决你的问题,请参考以下文章