You appear to be a bot. Output may be restricted
Description
Do a specific tag, this function should not be used. Please use edd_do_email_tags instead.
Usage
$mixed = EDD_Email_Template_Tags::do_tag( $m );
Parameters
- $m
- ( mixed ) required –
Returns
mixed
Source
File name: easy-digital-downloads/includes/emails/class-edd-email-tags.php
Lines:
1 to 12 of 12
public function do_tag( $m ) { // Get tag $tag = $m[1]; // Return tag if tag not set if ( ! $this->email_tag_exists( $tag ) ) { return $m[0]; } return call_user_func( $this->tags[$tag]['func'], $this->payment_id, $tag ); }