我的帖子在那里显示了一段时间,但现在它们从我的页面上消失了。在调试模式下,我看不到任何错误,也没有错误消息,我真的不知道为什么我的帖子不会显示这段代码,特别是当它以前工作时。我所做的就是添加高级自定义字段插件,添加几个字段,将它们链接到我的帖子并保存。然后我的帖子就不见了。我已经禁用并删除了插件,重新制作了我的所有帖子,但没有任何效果。
<div class="artiq-slidder">
<ul class="artiq-slidder-ul">
<?php
$args = array(
"post_type" => "piso"
);
$the_query = new WP_Query( $args );
?>
<?php if( have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<li class="artiq-slidder-item">
<img src="<?php the_post_thumbnail(); ?>">
<a href="<?php the_permalink(); ?>">
<p> <?php the_title(); ?> </p>
</a>
</li>
<?php endwhile; endif; ?>
</ul>
</div>