Jetpack is not doubt the best plugin out there with so many options and one of the best is Related Post
plugin. I’ve installed Related Post option in Jetpack for some my clients site as per their request.
Strangely for one of my client, I was not able to show Related Posts on any of the posts.
As you see below there are so many other folks also had the same issue 🙁
The related posts plugins are the great ways to create cross-links between our various contents
. Related post has great SEO benefits too.
Are you also facing an issue showing Jetpack’s related post on your site?
Here are tips on how fix Jetpack’s Related Post not showing issue.
Step-1 Manual Data Synchronization with WordPress.com
- Go to
https://wordpress.com/settings/manage-connection
- Click on
initiate a sync manually
link. - Wait for few minutes and sync will finish.
Step-2 Forces Posts to be considered public
- Open your theme’s functions.php file.
- Add below code at the bottom of the file.
function crunchify_jetpack_replated_post_fix() { if ( class_exists( 'Jetpack_Options' ) ) { Jetpack_Options::update_option( 'public' , true ); } } add_action( 'init', 'crunchify_jetpack_replated_post_fix' );
This will tell Jetpack to re-sync
and consider all posts as Public
.
Step-3
- Clear your site cache.
- Refresh your post.
You should be able to see relates posts now on your each post. Let me know if you have any other tips and tricks to fix this.