我创建了一个包含以下内容的插件:
索引。php包括:索引。phpstyle。我想创建一个插件,当用户激活它时,它会将用户重定向到包含/索引。html
我写了这样的东西
if(!function_exists(theme_redirect)) {
function theme_redirect () {
$options = get_option(\'option\');
if(isset($options[\'redirect\'])) {
$redirect = $options[\'redirect\'];
}
else {
$redirect = false;
}
if($options[\'redirect\'] == 1) {
include_once \'includes/index.php\';
exit;
}
}
add_action (wp_header,\'theme_redirect\');
}
但当它重定向时,只显示html标记样式从不在包含/索引中包含I附加样式。带“>
有人能帮我用另一种方式加入吗?