get_post()只有一个特定的类 - Wordpress

时间:2013-04-25 11:28:38

标签: php wordpress

我正在使用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之前调用“#wrap (Class here)”类的div,而不是由后面的php再次调用。

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

谢谢。

2 个答案:

答案 0 :(得分:0)

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

然后在你的循环中,你可以添加一个像

这样的条件
<?php 
     if(get_field('your_field_name' )){
        //add class 
     }
 ?>

答案 1 :(得分: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; ?>