如何在wordpress单帖中添加类别(帖子)

时间:2014-10-15 08:07:52

标签: php html wordpress categories

嘿,任何人都知道如何在wordpress单一帖子中添加特定的类别帖子。给出一个使用它的网站的链接http://www.animetv.org/anime/one-piece-dub/这是一个包含特定类别的帖子的帖子。它被要求作为相同的,即发布缩略图。谢谢。

2 个答案:

答案 0 :(得分:0)

只需将此代码放在您的single.php文件中即可获得所需的结果:

<?php $category = get_the_category(); ?>
<ul>
<?php
$args = array('category' => $category[0]->term_id );
$myposts = get_posts( $args );
foreach ( $myposts as $post ) : setup_postdata( $post ); ?>
    <li>
    <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail();?></a><br/>
        <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
    </li>
<?php endforeach; 
wp_reset_postdata();?>
</ul> 

根据您的选择将lss放入ul li,例如li {float:left;}

答案 1 :(得分:0)

如果您想在single.php页面中显示特定类别的帖子,请将以下代码添加到该文件中。

<?php
    $posts = new WP_Query();
    $posts->query( "category_name='{enter your category slug here}'&posts_per_page={enter the number of posts to display here}" );
    if($posts->have_posts()) :
        while ($posts->have_posts()) : $posts->the_post();
?>
            <div>
                <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a>
            </div>
            <div>
                <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
            </div>
<?php
        endwhile;        
    endif;
    wp_reset_postdata();
?>