woocommerce_email_editor_styles_unsupported_props
Usage
add_filter( 'woocommerce_email_editor_styles_unsupported_props', 'wp_kama_woocommerce_email_editor_styles_unsupported_props_filter' );
/**
* Function for `woocommerce_email_editor_styles_unsupported_props` filter-hook.
*
* @param $unsupported_props
*
* @return
*/
function wp_kama_woocommerce_email_editor_styles_unsupported_props_filter( $unsupported_props ){
// filter...
return $unsupported_props;
}
- $unsupported_props
- -
Where the hook is called
woocommerce_email_editor_styles_unsupported_props
woocommerce/packages/email-editor/src/Integrations/Utils/class-styles-helper.php 126
$unsupported_props = apply_filters( 'woocommerce_email_editor_styles_unsupported_props', $unsupported_props );