本文整理汇总了PHP中WC_Email::get_subject方法的典型用法代码示例。如果您正苦于以下问题:PHP WC_Email::get_subject方法的具体用法?PHP WC_Email::get_subject怎么用?PHP WC_Email::get_subject使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WC_Email
的用法示例。
在下文中一共展示了WC_Email::get_subject方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: check_exclude_subject_for_woocommerce_emails
public static function check_exclude_subject_for_woocommerce_emails() {
$a3_email_template_for_woocommerce = true;
$email = new WC_Email();
$current_subject_title = $email->get_subject();
if ( trim( $current_subject_title ) != '' ) {
global $wp_email_template_exclude_subject_data;
$all_exclude_subject = $wp_email_template_exclude_subject_data->get_all_exclude_subjects();
if ( is_array( $all_exclude_subject ) && count( $all_exclude_subject ) > 0 ) {
foreach ( $all_exclude_subject as $subject_data ) {
if ( trim( $subject_data->email_subject ) != '' && stristr( $current_subject_title, $subject_data->email_subject ) !== false ) {
$a3_email_template_for_woocommerce = false;
break;
}
}
}
}
return $a3_email_template_for_woocommerce;
}
示例2:
/**
* get_subject function.
*
* @access public
* @return string
*/
function get_subject()
{
return apply_filters('woocommerce_skip_one_email_subject_customer_subscription_unskipped', parent::get_subject(), $this->object);
}
开发者ID:AnimalsCode,项目名称:WooCommerce-Skip-One,代码行数:10,代码来源:class-wcso-email-customer-unskipped-subscription.php