我想创建一个关于体育的wordpress博客,所以我在functions.php中创建了一个CPT,并使用wp_query在我的首页上显示它。所以我用随机标题,文本和图像创建了3篇假文章。
我想做的是like this
我创建了一个自定义CSS,这里是我的front-page.php和css文件
.item-article-front {
background-color: black;
padding-bottom: 10px;
}
Above is the css, below is the php
<?php
echo '<div class="row" >';
$args = array( 'post_type' => 'sport', 'posts_per_page' => 3 );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post(); ?>
<?php echo '<div class="entry-content col-md-4 item-article-front">'; ?>
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('medium'); ?></a>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?> </a>
<p><?php the_excerpt(); ?></p>
<?php
echo '</div>';
endwhile;
echo '</div>';
?>
正如你所看到的那样,我试图对.item-article-front进行背景色调,但即使该类实际上归因于正确的div,它也不会按照我想要的方式显示。它可能是愚蠢的东西,但我无法找到它是什么。有什么想法吗?
谢谢!