我正在将html集成到wordpress,但我无法解决如何集成产品目录。有一些块,如果你点击一个,它打开一个主页,上面有这个产品的描述,但有些块有子目录,我不知道如何处理它们,如果你帮助我,我将不胜感激。这是页面上唯一一个从wordpress管理面板生成块的代码。
HTML
<?php
if ( have_posts() ) : query_posts('cat=10');
while (have_posts()) : the_post();
?>
<div class="col-xs-12 col-sm-offset-0 col-sm-12 col-md-offset-0 col-md-4 col-lg-4">
<div class="news-block">
<a href="<?php the_permalink(); ?>">
<div class="news-img">
<?php the_post_thumbnail();?>
<div class="news-lens"></div>
<div class="news-date"><?php the_time('d.m.y'); ?></div>
</div>
<div class="news-content">
<h4><?php the_title(); ?></h4>
<p><?php the_content(); ?></p>
</div>
</a>
</div>
</div>
<? endwhile;
endif;
wp_reset_query();
?>