将列添加到Understrap / Underscores博客页面模板帖子

时间:2018-04-09 21:12:07

标签: php wordpress bootstrap-4 underscores-wp

我想自定义Underscores Wordpress主题博客模板,以包含每个博客文章条目的列。

理想情况下,这些将成为一个分页的帖子网格,但现在我只是想让网格工作。

这是来自content.php文件:

<?php
/**
* Post rendering content according to caller of get_template_part.
*
* @package understrap
*/

?>

<article <?php post_class(); ?> id="post-<?php the_ID(); ?>">

<header class="entry-header">

    <?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ),
    '</a></h2>' ); ?>

    <?php if ( 'post' == get_post_type() ) : ?>

        <div class="entry-meta">
            <?php understrap_posted_on(); ?>
        </div><!-- .entry-meta -->

    <?php endif; ?>

</header><!-- .entry-header -->

<?php echo get_the_post_thumbnail( $post->ID, 'large' ); ?>

<div class="entry-content">

    <?php
    the_excerpt();
    ?>

    <?php
    wp_link_pages( array(
        'before' => '<div class="page-links">' . __( 'Pages:', 'understrap' 
    ),
        'after'  => '</div>',
    ) );
    ?>

</div><!-- .entry-content -->

<footer class="entry-footer">

    <?php understrap_entry_footer(); ?>

</footer><!-- .entry-footer -->

</article><!-- #post-## -->
    </div>

感谢您的帮助!

1 个答案:

答案 0 :(得分:4)

我假设你在谈论UnderStrap,而不是关于Underscores,对吗?

要将Bootstrap网格(http://getbootstrap.com/docs/4.1/layout/grid/)添加到文章/博客视图中,您必须做两件事: 第1步 在循环周围包裹外部行。 去做这个: 打开主题index.php并搜索: <main class="site-main" id="main">

在此后面添加开头,以便您拥有:

<main class="site-main" id="main"><div class="row">

现在在结束标记之前添加结束标记:

</div></main>

第2步 虽然需要在所有文章周围添加外部行包装器,但您需要将一个Bootstrap col类加上正确的大小变量添加到loop-templates / content.php文件中。这样它就适用于循环中的所有文章。

打开文件并添加:

<div class="col-6">

在开始<article>标记之前。

col-6类意味着“使用6/12的空间,例如50%。 所以你会有两个并排的关节。 当然,你可以使用col-4(4/12 = 33.33%)并排三篇文章。

根据您的需要,另一个好的起点是使用Bootstrap卡片组件: http://getbootstrap.com/docs/4.1/components/card/#card-decks