1 回答
TA贡献1839条经验 获得超15个赞
如果有人在这里有同样的问题,那么我所做的就是结合搜索结果并从差异中获取。查询类型
首先创建一个 Search-Result.php 文件,您的搜索表单将重定向到该文件。如您所见,我将搜索查询存储到变量并根据它获取输出。
<?php
$s=get_search_query();
$args = array(
's' =>$s,
'posts_per_page' => 10,
'post_type' => 'product'
);
$the_query = new WP_Query( $args );
if ( $the_query->have_posts() ) {
while ( $the_query->have_posts() ) {
$the_query->the_post();
?>
<?php wc_get_template_part( 'content', 'product' ); ?>
输出类型 2
<?php
$news=get_search_query();
$argsn = array(
's' =>$news,
'posts_per_page' => 10,
'post_type' => 'post'
);
$the_query = new WP_Query( $argsn );
if ( $the_query->have_posts() ) {
while ( $the_query->have_posts() ) {
$the_query->the_post();
the_title();
}?>
输出类型 3
<?php echo do_shortcode('[content-egg module=Amazon template=grid]'); ?>
这是适合我的简单解决方案,目前我面临很多天的问题。
- 1 回答
- 0 关注
- 73 浏览
添加回答
举报