-1
我有問題,我無法獲取該類別的相關產品,誰能告訴?相關產品按類別wordpress
<?php
global $post;
$args = array(
'post_type' => 'twin_posts',
'showposts' => 4
);
$categories = get_the_category($args);
$old_query = $wp_query;
$wp_query = new WP_Query($args);
?>
<ul class="ps-list row">
<?php
while (have_posts()) : the_post();
endwhile;
$wp_query = $old_query;
?>
</ul>