Email Nofitication based on roles
-
Hi guys,
I’m using the code here:
https://editflow.org/extend/auto-subscribe-user-groups-for-notifications/But I’d like to auto subscribe users based on the WordPress role (example: all the authors).
Is it possible?I tried this code with no luck:
if ( 'pending' == $new_status ) { $usergroup_ids_to_follow = get_users( array( 'role'=>'editor', 'fields' => 'ID' ) ); $edit_flow->notifications->follow_post_usergroups( $post->ID, $usergroup_ids_to_follow, true ); }
Thanks
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Email Nofitication based on roles’ is closed to new replies.