AnsPress_Email_Hooks::get_admin_emails( string $opt )
Description #
Get admin emails to notify based on option.
Parameters #
- $optstring (Required) Option key.
Source #
File: addons/free/email.php
public static function get_admin_emails( $opt ) { $current_user = wp_get_current_user(); if ( ap_opt( $opt ) ) { $admin_emails = explode( ',', preg_replace( '/\s+/', '', ap_opt( 'email_admin_emails' ) ) ); // Don't bother if current user is admin. if ( empty( $admin_emails ) || in_array( $current_user->user_email, $admin_emails, true ) ) { return false; } return $admin_emails; } return false; }
Expand full source code Collapse full source code View on GitHub: addons/free/email.php:270
Add your comment