我正在使用 Wordpress 作为我正在构建的网站的 CMS。
页面模板:
<?php get_header(); ?>
<!-- Class here -->
<div id="wrap">
<div id="content" class="column">
<?php if( have_posts() ): while( have_posts() ): the_post(); ?>
<div class="post">
<?php the_content(); ?>
</div>
<?php endwhile; endif; ?>
</div>
<div id="sidebar" class="column">
<?php get_sidebar(); ?>
</div>
</div>
</div>
</div>
<div>
<?php get_footer(); ?>
我需要一个具有“ theslide
”类的 div,在 之前调用,#wrap (Class here)
而不是被后面的 php 再次调用。
可以按照“”的方式做某事get_post if class=theslide
吗?
谢谢你。