Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * This snippet will allow the rss show events per owner (using user ID)
- * eg. http://domain.com/events/feed/?owner=2 (change 2 with your wp user id)
- */
- function my_custom_rss_owner($args){
- $args['owner'] = $_REQUEST['owner'];
- return $args;
- }
- add_filter( 'em_rss_template_args','my_custom_rss_owner',10,1);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement