是的,当然这是可能的,我自己制作了两个卖汽车配件的网站,这是非常可能的。一切皆有可能。
您可以使用文件搜索创建自己的搜索结果。php
以下是获取产品信息的两种方法:
$args = array(
\'post_type\' => \'product\',
\'posts_per_page\' => 10,
\'meta_key\' => \'_last_viewed\',
\'orderby\' => \'meta_value\',
\'order\' => \'DESC\'
);
query_posts( $args );
if( have_posts() ) :
while( have_posts() ) :
the_post();
echo the_title();
endwhile;
endif;
$args = array(
\'post_type\' => \'product\',
\'posts_per_page\' => 10,
\'orderby\' => \'date\',
\'order\' => \'desc\',
);
query_posts( $args );
if( have_posts() ) :
while( have_posts() ) :
the_post();
echo the_title();
endwhile;
endif;
我希望这能给你一个如何实现目标的想法
要得到你所需要的,只需要有更多的细节。
在这两个示例中,可以先搜索并显示它,然后根据需要进行另一次搜索并显示第二个结果,依此类推。如果我们不想显示某些内容,我们会设法过滤信息而不显示它。