具有自定义HTML的Wordpress帖子页面包括取决于类别

时间:2015-07-09 12:07:29

标签: php html wordpress

我一直试图让这一整天都在工作。我想添加一些自定义HTML,具体取决于帖子在Wordpress中的类别,从单独的目录中保持干净。我似乎无法加载html文件。

相关代码是:

        <div class="container">
    <?php while ( have_posts() ) : the_post(); ?>
        <div class="row clearfix">  
            <?php if (function_exists('breadcrumbs')) breadcrumbs(); ?>
            <div class="title clearfix">
                <a href="javascript:window.history.back();" class="back-list"></a>
            <?php global $post; $category = get_the_category($post->ID); setPostViews($post->ID);  ?>
                <h1><?php echo $category[0]->name;?></h1>
            </div>
            <div class="detailBlock clearfix">
                <h1><?php the_title()?></h1>
                <div class="detail-inner">
                <?php $featured_img = wp_get_attachment_image_src(get_post_thumbnail_id(), 'full', true);
                    if($featured_img) {
                        echo "<div class='detail-img'><img src='$featured_img[0]' alt='".get_the_title()."'></div>";
                        echo $category[0]->ID ;
                    }
                    the_content(); 

                ?>
                <?php 
                /* TEST CODE */
                 global $post; $category = get_the_category($post->ID);
                 if($category[0] == '6'){
                 include( get_template_directory_uri() '/call-to-actions/cta-weight-loss-fem.html');
                 }
                            ?>

                </div>


        </div>
        <?php endwhile;?>
    </div>

1 个答案:

答案 0 :(得分:0)

变化:

if($category[0] == '6'){

if($category[0]->ID == '6'){

这应该有用。

注意:您不需要上面的行来获取您之前已经拥有的类别。更好的想法是将值存储为变量。