mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
5 lines
186 B
Text
5 lines
186 B
Text
function jetpackme_more_related_posts( $options ) {
|
|
$options['size'] = 6;
|
|
return $options;
|
|
}
|
|
add_filter( 'jetpack_relatedposts_filter_options', 'jetpackme_more_related_posts' );
|