woocommerce_email_recipient_

woocommerce_email_recipient_

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

apply_filters('woocommerce_email_recipient_') is found 1 times:

  • /includes/emails/class-wc-email.php line 446
    	 *
    	 * @return string
    	 */
    	public function get_recipient() {
    		$recipient  = apply_filters( 'woocommerce_email_recipient_' . $this->id, $this->recipient, $this->object, $this );
    		$recipients = array_map( 'trim', explode( ',', $recipient ) );
    		$recipients = array_filter( $recipients, 'is_email' );
    		return implode( ', ', $recipients );
    	}
    
    	/**