快速而简单的方法可能是创建一个自定义页面模板,并让搜索表单将用户发送到使用它创建的页面。
<?php
/*
Template Name: Location Results
*/
if ( isset($_REQUEST[\'search_field_name\']) && !empty($_REQUEST[\'search_field_name\']) ) {
# Read and escape the input data
# Do your query, grab your results
# Display your results to the user
} else {
# No results found. Display search form again with note to enter something.
}
然后,您可以创建一个新页面,选择此页面模板并编辑表单以将结果发送给它。
有其他方法可以做到这一点,但这是一个相当快速和简单的方法,我现在经常使用。