我经营着一家拥有大约10k种产品的加盟店,我正试图为SEO/SEM目的构建登录页面。这些页面应该包含标题、一些文本和相关产品。
我想通过url slug查询产品。有可能这样做吗?
<?php $args = array(
\'post_type\' => \'product\',
\'posts_per_page\' => 12,
\'title\' => \'contains url slug\' // add something like
);
$loop = new WP_Query( $args );
if ( $loop->have_posts() ) {
while ( $loop->have_posts() ) : $loop->the_post();
get_template_part( \'content\', \'product\' );
endwhile;
}
else {
_e( \'No products found\' );
}
wp_reset_postdata();
?>
产品数据是我通过远程API(从不同的商家)获得的。这些响应不包含我可以用于此的任何类别或分类法。
备选方案:是否有办法在此页面的URl中显示slug的“搜索结果”?