Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dougaitken/e350ccc81c610d2cbd13b1d170bbdb40 to your computer and use it in GitHub Desktop.
Save dougaitken/e350ccc81c610d2cbd13b1d170bbdb40 to your computer and use it in GitHub Desktop.
Disable Jetpack Publicize for WooCommerce Products
// turn off Publicize for Products only
add_action('init', 'doug_woo_publicize_remove');
function doug_woo_publicize_remove() {
remove_post_type_support( 'product', 'publicize' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment