标题未包装在“自定义帖子”中

时间:2019-01-04 12:12:56

标签: php wordpress

enter image description here较大的标题按类别在最近的帖子中左对齐。

这是代码,我遇到了问题。我也添加了图片。

<div class="clearfix shadow-sm bg-white rounded">

<?php $catquery = new WP_Query( 'cat=10&posts_per_page=1' ); ?>
<?php while($catquery->have_posts()) : $catquery->the_post(); ?>
<a href="<?php the_permalink() ?>" rel="bookmark"><h5><?php the_title(); ?></h5>
<?php the_post_thumbnail( array (75, 75), array('class' => 'alignleft')); ?></a>
<?php endwhile;
    wp_reset_postdata();
?>
<div class="cat-title font-weight-bold">
<?php
$categories = get_the_category();

if ( ! empty( $categories ) ) {
    echo esc_html( $categories[0]->name );   
}
?>
</div>
</div>

我将图像对齐为内联

.clearfix h2, h3, h4, h5 {
    display: inline;
}

请帮助正确包装标题。

0 个答案:

没有答案