你是_doing_it_wrong
, 像$product
是一个对象。
我很确定你想要这样的东西:
$args = array(
\'post_type\' => \'product\',
\'posts_per_page\' => 4,
);
$featured_query = new WP_Query($args);
if ($featured_query->have_posts()) {
while ($featured_query->have_posts()) {
$featured_query->the_post();
?>
<h1 class="post-title"><?php the_title(); ?></h1>
<div class="post-content"><?php the_content(); ?></div>
<?php
}
wp_reset_postdata();
}