1

我正在使用 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>
&nbsp;
<div>

<?php get_footer(); ?>

我需要一个具有“ theslide”类的 div,在 之前调用,#wrap (Class here)而不是被后面的 php 再次调用。

可以按照“”的方式做某事get_post if class=theslide吗?

谢谢你。

4

2 回答 2

0

感谢所有的意见,我的一个朋友帮助了我。

如果其他人有同样的问题:

<?php if( have_posts() ): while( have_posts() ): the_post();

$post_content = get_the_content();
preg_match('/(<div.*?class="theslide".*?<\/div>)(.*)/ism', $post_content, $content);

if( isset($content[1]) )
{
    echo $content[1];            //print the "theslide" div
    $page_content = $content[2];
}
else
{
    $page_content = $post_content;

}
?>

<div id="wrap">
    <div id="content" class="column">

        <div class="post">
            <?php echo $page_content; ?>
        </div>

    </div>
    <div id="sidebar" class="column">
        <?php get_sidebar(); ?>
    </div>
</div>
<?php endwhile; endif; ?>
于 2013-04-30T12:50:50.040 回答
0

您可以使用此插件将自定义字段添加到您的帖子 http://wordpress.org/extend/plugins/advanced-custom-fields/

然后在你的循环中,你可以添加一个条件,比如

<?php 
     if(get_field('your_field_name' )){
        //add class 
     }
 ?>
于 2013-04-25T13:11:46.597 回答