自定义帖子类型--- 事件
自定义分类法----- 我的事件
使用jQuery Datepicker作为开始日期和结束日期
用于搜索事件名称的搜索字段
我想通过使用简单表单搜索来获取自定义帖子类型事件。在其中,我在select选项中获取了自定义分类法,然后在最后一个Search字段中使用jQuery Datepicker添加了开始日期和结束日期。
我的搜索网址如下:
http://localhost/customthemedev/?categoryfilter=Techfest&Start=01-May-2019&End=10-May-2019&search=smoke+event+
<form class="select-event-date" method="GET" action="<?php bloginfo('home'); ?>" autocomplete="off" id="filter">
<div class="form-group eventfunction">
<label>Categories</label>
<select class="form-control" name="categoryfilter">
<?php
$tax_terms = get_terms('myevents', array('hide_empty' => '0'));
foreach ( $tax_terms as $tax_term ):
echo '<option value="'.$tax_term->name.'">'.$tax_term->name.'</option>';
endforeach;
?>
</select>
</div>
<div class="form-group selectDate">
<input type="text" class="form-control" placeholder="Start Date" name="Start" id="txtFrom">
</div>
<div class="form-group endDate">
<input type="text" class="form-control" placeholder="End Date" name="End" id="txtTo">
</div>
<div class="form-group searchEvent">
<label>
<img src="<?php echo get_template_directory_uri();; ?>/assets/images/search-22.png" alt="Icon">
</label>
<input type="text" placeholder="Search.." name="search">
</div>
<button type="submit" class="btn btn-default">FIND EVENTS</button>
</form>
答案 0 :(得分:0)
spring.cloud.stream.bindings.channelName.destination=mq-test.topic
spring.cloud.stream.bindings.channelName.producer.bindingRoutingKey=mq-test
spring.cloud.stream.bindings.channelName.producer.requiredGroups=aa.mq-test
//获取数组格式的所有术语
Try this :