TwentyFourteenテーマのFeaturedコンテンツの表示記事数を変える

TwentyFourteenテーマのFeaturedコンテンツの表示記事数を変える。

デフォルトは6記事。

この記事はfunction.phpをいじくることで、変更することが可能。変更するのは以下の文。

[php]
// Add support for featured content.
add_theme_support( ‘featured-content’, array(
‘featured_content_filter’ => ‘twentyfourteen_get_featured_posts’,
‘max_posts’ => 6,
) );
[/php]

Max_postsの数を変更することにより、表示数を変更できる。

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です