我在wordpress的自定义模板页面中编写代码,我有以下表单,旁边有以下php代码。它没有用,我尝试了不同的选择,但仍然没有。
<div class="su-tabs-pane su-clearfix">
<form style="padding: 5px 25px; background:#00ABEC;" action="" method="GET">
Nume:<input style="width:13.4%;" name="nume" type="text" value="" />
Specializare:<input style="width: 13.4%;" name="specializare" type="text" value="" />
Spital:<input style="width: 13.4%;" name="spital" type="text" value="" />
<select name="filter">
<option value="ALL">Toate judetele</option>
<option value="AB">Alba</option>
</select>
<input type="submit" value="Cauta" />
</form>
<?php
global $post;
if(isset($_GET["submit"])){
//variabile
$nume_searchq=$_GET["nume"];
$nume_searchq=strlower($nume_searchq);
$spec_searchq=$_GET["specializare"];
$spec_searchq=strlower($spec_search);
$instit_searchq=$_GET["spital"];
$instit_searchq=strlower($instit_searchq);
if($_GET['filter']=="ALL") {
$results=$wpdb->get_results("SELECT * FROM `wp_posts` WHERE LOWER(post_title) LIKE '%$nume_searchq%' OR LOWER(post_content) LIKE '%$spec_searchq%' OR LOWER(post_content) LIKE '%$instit_searchq%' ORDER by post_title");
}else if($_GET['filter']=="AB") {
$results=$wpdb->get_results("SELECT * FROM `wp_posts` WHERE LOWER(post_content) LIKE '%Alba%' OR LOWER(post_title) LIKE '%$nume_searchq%' OR LOWER(post_content) LIKE '%$spec_searchq%' OR LOWER(post_content) LIKE '%$instit_searchq%' ORDER by post_title");
}
$myposts = get_posts( $results);
foreach( $myposts as $post ){
setup_postdata($post);
echo '<li><a href="' . get_the_permalink() . '"> ' . get_the_title() . ' </a></li>';
}//end_foreach
wp_reset_postdata();
}//endIF_submit
?>
</div>
它实际上不显示任何关联,我按提交,没有任何反应。告诉我,如果我有一些拼写问题或其他任何事情......谢谢!
答案 0 :(得分:1)
你的php代码包含在这个条件中:
if(isset($_GET["submit"])){...}
但是,您的表单没有具有该name属性的元素(name="submit"
),因此该条件始终为false。
将提交按钮更改为:
<input type="submit" name="submit" value="Cauta" />