1
我試圖顯示像雜誌文章一樣的所有博客文章。請參閱下面的鏈接確切的格式。如何在圖像下顯示多個相同列的WordPress博客文章?
的single.php
<div class="container-fluid">
<div class="row-fluid">
<div class="col-xs-12 main-blog">
<?php
if(have_posts()):
while(have_posts()): the_post(); ?>
<?php the_title('<h1 class="entry-title">', '</h1>'); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?
<div class="article-single">
<p><?php the_content(); ?></p>
</article>
<?php endwhile;
endif;
?>
</div>
</div>
</div>
CSS
.article_single {
column-width: 150px;
-webkit-column-width: 150px;
-moz-column-width: 150px;
column-gap: 30px;
-webkit-column-gap: 30px;
-moz-column-gap: 30px;
font-family: Garamond;
column-count: 3;
}
無論我做什麼的內容也調整圖像大小。如何顯示內容而不會搞亂圖像?
哪裏PHP調用功能的圖像和HTML和CSS? – markratledge
圖像已通過儀表板手動插入帖子。我還沒有嘗試過使用特色圖片的電話。 HTML和CSS已發佈在問題中。 –