1
我是新開發的wordpress插件。我設計了一個搜索表單,但是我不知道在哪裏處理和打印提交的表單數據。 它是在一個wedget基於插件和插件的形式部分代碼是在這裏:Wordpress插件表單問題
function widget($args, $instance) {
extract($args);
$title = apply_filters('widget_title', $instance['title']);
$message = apply_filters('widget_content', $instance['content']);
echo $before_widget;
//if ($title)
// echo $before_title . $title . $after_title;
echo '<div class="shk_location_form_holder">
<span class="shk_loc_title">'.$title.'
<form mthod="post">
<input type="text" name="shk_inp_search_locations" id="shk_inp_search_locations" /><br>
<div style="height:5px"></div>
<input type="submit" Value="Search Locations" />
</form></div>';
echo $after_widget;
if(isset($_REQUEST['shk_inp_search_locations'])){
add_filter('the_content','handle_content');
}
}
你是表單缺少_action_參數。您可以將它發送到另一個.php文件,將操作留空並在相同的頁面/文件/小部件中處理$ _POST數據或使用[AJAX](http://www.askaboutphp.com/213/php-and- jquery-submit-a-form-without-refreshing-the-page.html)來處理數據。 –