首页 > 解决方案 > 标题未包含在自定义帖子中

问题描述

在此处输入图像描述较大的标题按类别在最近的帖子中左对齐。

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

<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;
}

请帮助正确包装标题。

标签: phpwordpress

解决方案


推荐阅读