Publicize

Jetpack’s Publicize module works quite well with Custom Post Types, you just have to enable it in your theme or in the functions.php :

add_action(‘init’, ‘my_custom_init’);
function my_custom_init() {
     add_post_type_support( ‘your-custom-post-type-name’, ‘publicize’ );
}

Jetpack Publicize SupportYou can also access it automatically once Jetpack is enabled in the Advanced Options tab under Edit Pods for your Custom Post Type, under Supports. Jetpack automatically adds ‘Jetpack Publicize Support’ when the plugin is activated.

Other Helpful Documentation on Jetpack

Related Posts

Jetpack’s Related Posts will automatically work with your site’s Posts, but you can also use it with other Custom Post Types you might have, like Events, a Portfolio, or even Products. In order to get Related Posts to index and display on your Custom Post Types, you will need to add this function and filter: …

Read more