Guest User

WP Socializer - post type fix

a guest
Mar 21st, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. FILE: wp-socializer/core/location_rules.php
  2.  
  3. REPLACE LINE 364:
  4.  
  5. return is_page( $ids );
  6.  
  7. WITH:
  8.  
  9. $post_types = array_map( 'trim', explode( ',', $ids ) );
  10. return in_array( get_post_type(), $post_types );
Add Comment
Please, Sign In to add comment