只有一个类别显示帖子 - wordpress

时间:2017-02-26 18:07:16

标签: php wordpress post categories display

我遇到了wordpress的问题。只有一个类别显示帖子...如果我将帖子分配给另一个类别,则它不会显示在内容区域中。可能有什么不对? 这是我的content.php文件:

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

<div class="main-post">
<a href="<?php the_permalink(); ?>">
    <div class="main-post-image" style="background-image:url('<?php echo wp_get_attachment_url( get_post_thumbnail_id() );?>')"></div>
</a>
<div class="main-post-info">
    <a class="post-author" href="<?php echo get_author_posts_url(get_the_author_meta('ID')) ?>"><?php the_author(); ?></a>
    <a class="post-date" href="<?php the_time('j F Y'); ?>"><?php the_time('j F Y'); ?></a>
</div>
<a class="main-post-title" href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<p class="main-post-lead"><?php the_excerpt(); ?></p>
<a class="button button-read-more" href="<?php the_permalink(); ?>">
    Czytaj więcej
    <img class="button-arrow" src="<?php echo get_bloginfo('template_url') ?>/images/button-arrow.png" alt="Czytaj więcej">
</a>

    

0 个答案:

没有答案