WC_Tracker::get_core_email_overrides
Check if any core emails are being overridden by a template override.
Метод класса: WC_Tracker{}
Хуков нет.
Возвращает
Массив
. Array with count of core email overrides and the templates that are overriden.
Использование
$result = WC_Tracker::get_core_email_overrides( $template_overrides ): array;
- $template_overrides(массив) (обязательный)
- Template overrides.
Код WC_Tracker::get_core_email_overrides() WC Tracker::get core email overrides WC 9.9.4
public static function get_core_email_overrides( $template_overrides ): array { $email_template_overrides = EmailImprovements::get_core_email_overrides( $template_overrides ); return array( 'count' => count( $email_template_overrides ), 'templates' => $email_template_overrides, ); }