显示分类中的内容

时间:2014-06-13 11:00:10

标签: wordpress taxonomy

希望你可以帮我这个,我想在我的自定义帖子类型,分类中显示内容,我为archive.php创建了自己的模板继承人代码

    <div id="primary">
        <div id="content" role="main">
        <?php if (is_tax( 'location' )) :?>
            <div class="offer-content">
                <div class="offer-image"><?php the_post_thumbnail(); ?></div>
                <div class="offer-desc">
                    <?php the_content(); ?>
               </div> 
            </div>
        <?php endif;?>
        </div><!-- #content -->
    </div><!-- #primary -->

我尝试使用the_content但它继续在帖子中显示内容,而不是我创建的自定义帖子类型..

1 个答案:

答案 0 :(得分:0)

替换

<?php if (is_tax( 'location' )) :?>

<?php if (is_tax( 'location' ) && ( 'your_custom_post' == get_post_type() )) :?>

这可以帮助你......