$位置参数不正确。尝试以下操作:
function redirect_to_local_110(){
wp_redirect( home_url() );
exit;
}
function add_home_link() {
add_menu_page( \'Course\', \'Course\', \'read\', \'home\', \'redirect_to_local_110\', \'dashicons-welcome-learn-more\');
}
add_action( \'admin_menu\', \'add_home_link\', 1001 );
或者您可以使用:
function redirect_to_local_110(){
wp_redirect( \'http://www.example.com\', 301 );
exit;
}
function add_home_link() {
add_menu_page( \'Course\', \'Course\', \'read\', \'home\', \'redirect_to_local_110\', \'dashicons-welcome-learn-more\');
}
add_action( \'admin_menu\', \'add_home_link\', 1001 );