我想更改默认搜索页URLfrom:
http://example.com/?s=background&post_type=download
to:
http://example.com/photos/background/
我试图更改默认搜索页面的以下功能:
function wp_change_search_url() {
if ( is_search() && ! empty( $_GET[\'s\'] ) ) {
wp_redirect( home_url( "/search/" ) . urlencode( get_query_var( \'s\' ) ) );
exit();
}
}
add_action( \'template_redirect\', \'wp_change_search_url\' );
上述功能正常工作,但不适用于自定义帖子类型搜索。
在我的主题中,我只想搜索名为download
目前,该功能搜索所有帖子&;第页。我能做什么?