Yeah – I’ll add that in in the next release, but in the mean time you should be able to do this by using the add_post_type_support function:
add_post_type_support( 'podcast', 'publicize' );
+1 for adding publicize support to the plugin.
I’d still love to see this happen. It’s such a simple change but it’s a hassle for me to make it every time the plugin updates.
In:
seriously-simple-podcasting/includes/class-ssp-admin.php
Replace:
‘supports’ => array( ‘title’, ‘editor’, ‘excerpt’, ‘thumbnail’, ‘page-attributes’, ‘comments’, ‘author’, ‘custom-fields’),
With:
‘supports’ => array( ‘title’, ‘editor’, ‘excerpt’, ‘thumbnail’, ‘page-attributes’, ‘comments’, ‘author’, ‘custom-fields’, ‘publicize’ ),
My apologies – I added this in, but must have mistakenly removed it in a later update. I’ll make sure that this is definitely in the next release of the plugin.
That being said, adding the line of code that I mentioned above will add publicize support without you having to edit the plugin itself:
add_post_type_support( 'podcast', 'publicize' );
Just add that to your theme’s functions.php file and it will always work 🙂
If this has helped you then please consider supporting continued development by leaving a review.
Cheers,
Hugh
Just to let you know that I have just published v1.8.10 of SSP that includes support for Jetpack’s Publicize feature for the podcast post type.
Cheers,
Hugh