我需要按字母顺序列出产品。就像我的自定义模板一样,我列出了所有产品。如果用户点击字母b,那么我需要显示以字母b开头的产品。这是我显示产品列表的代码。
global $wpdb,$post;
$args = array(
'post_type' => 'product',
'posts_per_page' => -1
);
$query = new WP_Query($args);
$by_letter = array();
while( $query->have_posts() ) {
$query->the_post();
$post->post_name;
}