我正在数据库课程中查看上一个考试题。该解决方案说,以下时间表不可序列化。我不知道如何,这是我的主意。
附表2:
<?php
$query = new WP_Query(array(
'post_type' => 'intro',
'post_per_page' => 3,
));
?>
<?php while($query->have_posts()): $query->the_post(); ?>
<!-- Intro Box -->
<div class="intro_box d-flex flex-column align-items-center justify-content-center text-center">
<?php the_post_thumbnail(); ?>
<div class="intro_box_title"><h3><?php the_title(); ?></h3></div>
<div class="intro_box_text">
<?php the_content(); ?>
</div>
</div>
<?php endwhile; ?>
这将产生没有循环的图形。从而使其可序列化,对吗?我想念什么?