Skip to content

Instantly share code, notes, and snippets.

@caercam
Last active January 6, 2016 16:13
Show Gist options
  • Save caercam/9af61af2fab2a11c44d9 to your computer and use it in GitHub Desktop.
Save caercam/9af61af2fab2a11c44d9 to your computer and use it in GitHub Desktop.
Add WordPress' Jetpack Publicize support for movies
<?php
function wpmoly_movie_publicize_support( $args, $post_type ) {
if ( 'movie' != $post_type ) {
return $args;
}
$support = array_merge( $args['supports'], array( 'publicize' ) );
$args['supports'] = $support;
return $args;
}
add_filter( 'register_post_type_args', 'wpmoly_movie_publicize_support', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment