Instapress WordPress 主題分享帶有小描述的照片。 受?Instagram?的啟發(fā),它還允許您發(fā)表評論, 支持類別、置頂帖子、標簽、搜索頁面等等。 開箱即用,并且可以通過子主題輕松擴展。 非常適合個人和集體旅行博客。




定制
默認情況下,您有幾個設置可用于更改主題的外觀。 使用內(nèi)置定制器更改頁腳中的文本和文章摘要中的作者可見性。 除此之外,您還可以輕松管理網(wǎng)站的主菜單。

要啟用站點搜索,您需要創(chuàng)建一個單獨的頁面,并在?屬性中選擇 Search page?模板。 例如,您可以將搜索鏈接放在主菜單中。

注意:
該wordpress相冊主題的頁面沒有評論功能,可將以下代碼替換至主題根目錄下的page.php
文件。核心是20至23行。
<?php
/**
* Page template
*
* @package instapress
* @since 1.0
*/
get_header(); ?>
<section class="content" id="content">
<?php
if ( have_posts() ) {
while( have_posts() ) {
the_post();
// Get page content partial
get_template_part( 'partials/content', 'page' );
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) {
comments_template();
}
}
} else {
get_template_part( 'partials/caption', 'none' );
}
?>
</section>
<?php get_footer();