wordpress主题开发中如何添加主题设置页面
本站开发的几款wordpress中文主题中大家会发现,都有独立的主题设置选项,很多朋友看了以后也很想为自己的wordpress主题添加这样的功能,那么今天就分享…
目录
<form method="get" class="search-form" action="<?php bloginfo('home'); ?>">
<select style="" name="cat" class="search-option">
<option value="0" selected="selected">全部</option>
<option value="1">新闻动态</option>
<option value="2">行业动态</option>
</select>
<input class="bgtime" name="bgtime" type="date">
<input class="endtime" name="endtime" type="date">
<input type="search" class="search-field" placeholder="请输入关键词" value="" name="s" />
<input type="submit" class="search-submit" value="搜索" />
</form>
<select style="" name="cat" class="search-option">
<option value="0" selected="selected">全部</option>
<option value="1">新闻动态</option>
<option value="2">行业动态</option>
</select>
<?php wp_dropdown_categories('class=search_select&show_option_all=全站搜索&orderby=name&hierarchical=0&selected=-1&hide_empty=0&depth=1');?>
<?php
$args = array(
'cat' => $_GET['cat'],
'post_type' => 'post',
'date_query' => array(
array(
'after' => $_GET['bgtime'],
'before' => $_GET['endtime'],
'inclusive' => true,
),
),
's' => $_GET['s'],
);
$the_query = new WP_Query( $args );?>
<?php if ( $the_query->have_posts() ) : ?>
<?php while($the_query->have_posts()):$the_query->the_post();?>
<div class="listone">
<div class="listright">
<a href="<?php%20the_permalink();?>" title="<?php the_title();?>">
<?php the_title();?><span style="float: right;"><?php the_time('Y-m-d');?></span>
</a>
</div>
<div class="clearfix"></div>
</div>
<?php endwhile;?>
<?php else :?>
<div class="nolist">No relevant content</div>
<?php endif;?>
更多更详细的介绍,可以查看WordPress实现按分类及时间搜索功能视频教程
WordPress日记主要承接WordPress主题定制开发、PSD转WordPress、WordPress仿站以及以WordPress为管理后端的小程序、APP,我们一直秉持“做一个项目,交一个朋友”的理念,希望您是我们下一个朋友。如果您有WordPress主题开发需求,可随时联系QQ:919985494 微信:18539976310