Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function wpf_allow_rss( $can_access, $user_id, $post_id ) {
- if ( is_feed() ) {
- $can_access = true;
- }
- return $can_access;
- }
- add_filter( 'wpf_user_can_access', 'wpf_allow_rss', 10, 3 );
- add_filter( 'wpf_user_can_access_archive', 'wpf_allow_rss', 10, 3 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement