这是代码,我遇到了问题。我也添加了图片。
<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;
}
请帮助正确包装标题。