Skip to content

Instantly share code, notes, and snippets.

@cliffordp
Created October 27, 2016 22:00
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cliffordp/3c905c991294e94a9b77b929af053423 to your computer and use it in GitHub Desktop.
Save cliffordp/3c905c991294e94a9b77b929af053423 to your computer and use it in GitHub Desktop.
Enable Jetpack Publicize for The Events Calendar events
<?php
/**
* Enable Jetpack Publicize for The Events Calendar events
*
* from https://gist.github.com/cliffordp/3c905c991294e94a9b77b929af053423
*
* adapted from https://jetpack.com/support/publicize/#custom-post-types for The Events Calendar
*/
add_action( 'init', 'tribe_events_work_with_jetpack_publicize' );
function tribe_events_work_with_jetpack_publicize() {
if ( ! class_exists( 'Tribe__Events__Main' ) ) {
return false;
}
add_post_type_support( Tribe__Events__Main::POSTTYPE, 'publicize' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment