Advertisement
ten80snowboarder

Update list of WP Post Types available to the Social Plugin

May 7th, 2012
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.51 KB | None | 0 0
  1. /**
  2.  * Return array of enabled social broadcasting post types
  3.  *
  4.  * @static
  5.  * @return array
  6.  */
  7. /* WAS THIS */
  8. public static function broadcasting_enabled_post_types() {
  9.     return apply_filters('social_broadcasting_enabled_post_types', array('post'));
  10. }
  11.  
  12. /* CHANGE TO THIS - ADD INTO THE ARRAY THE POST TYPES YOU WANT TO HAVE AVAILABLE TO THE "SOCIAL" PLUGIN */
  13. public static function broadcasting_enabled_post_types() {
  14.     return apply_filters('social_broadcasting_enabled_post_types', array('post', 'product'));
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement