Could you let me know your site URL, so I can take a closer look?
Thanks!
It’s a development site right now. I’d rather not post the link publicly. Could I email it to you?
I got your emails. Since you’re trying to get the posts from the WordPress.com REST API, could you try whitelisting your custom Post Type like so:
function allow_my_post_types($allowed_post_types) {
$allowed_post_types[] = 'speight_home_plans';
return $allowed_post_types;
}
add_filter( 'rest_api_allowed_post_types', 'allow_my_post_types' );
Let me know how it goes.
I was looking for a response in my email, so I’m glad I thought to com back here just now 🙂 I will try that right now…
Alas, no luck. I *really* need to get this working today so the client can see progress.
Could you try to click on the “Reindex” button that appears at the bottom of Jetpack’s Debug page? You can get to that page thanks to the “Debug” link appearing at the bottom of the Jetpack menu.
I just released an update to the plugin, that should solve the problem for you You can update to 1.3.2 as soon as the new version is available in your dashboard.
Let me know how it goes.