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




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

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

注意:
該wordpress相冊(cè)主題的頁(yè)面沒(méi)有評(píng)論功能,可將以下代碼替換至主題根目錄下的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();


