Problem with Related Posts
-
When I try to display 6 related posts using Jetpack module, the layout gets pretty messed up.
Here is the screenshot: https://worldanimeclub.com/wp-content/uploads/2014/06/jetpack.pngAnd this is the code I use to display 6 related posts (code is added in functions.php)
/*6 related posts*/ function jetpackme_more_related_posts( $options ) { $options['size'] = 6; return $options; } add_filter( 'jetpack_relatedposts_filter_options', 'jetpackme_more_related_posts' );
When I revert back to 3, layout becomes normal and working again. But my client needs at least 6 related post items. Hope someone can help me ??
Viewing 13 replies - 1 through 13 (of 13 total)
Viewing 13 replies - 1 through 13 (of 13 total)
- The topic ‘Problem with Related Posts’ is closed to new replies.