我试图实现一个重定向到一个自定义的URL为所有产品搜索结果返回0结果。与下面的代码,我得到“Fatal error
“在WordPress的消息屏幕。
这是我的代码:
add_action( 'template_redirect', 'redirect_empty_search_result', 2 );
function redirect_empty_search_result() {
if ( isset( $_GET['s'] ) && strcasecmp( $_GET['s'] ) == 0 ) {
wp_safe_redirect( '/empty-search/' );
exit();
}
}
字符串
1条答案
按热度按时间mccptt671#
我还没有检查你的代码,但“strcasecmp”需要两个参数exmaple:
字符串