●タイトル「関連」を変える
CSSに書き足す。他に、functions.phpで変える方法もあり、下記その他カスタマイズのリンク先で紹介されている。
.jp-relatedposts em {display: none;}
h3.jp-relatedposts-headline:after {font-size: <strong>22</strong>px;content: "<strong>関連記事</strong>";}
●表示数を変える
functions.phpに書き足す。
function jetpackme_more_related_posts( $options ) {
$options['size'] = <strong>6</strong>;
return $options;
}
add_filter( 'jetpack_relatedposts_filter_options', 'jetpackme_more_related_posts' );
●その他カスタマイズ
→Customize Related Posts