add_action('init', 'kraft_woo_publicize'); function kraft_woo_publicize() { add_post_type_support( 'product', 'publicize' ); }
This code snippet, for your theme’s functions.php or in a core functionality plugin adds Jetpack’s Publicize feature to WooCommerce products. This would allow you to auto-post to Facebook, Twitter, Google+, etc when you post a new WooCommerce product to your site.
UPDATE: WooCommerce now includes Publicize support by default out of the box as of version 2.3.0. If you want to disable this feature, use the following code:
add_action('init', 'kraft_woo_publicize_remove'); function kraft_woo_publicize_remove() { remove_post_type_support( 'product', 'publicize' ); }
Leave a Reply