Automattic\WooCommerce\Admin\Features
NewProductManagementExperience::enqueue_styles()
Enqueue styles needed for the rich text editor.
Method of the class: NewProductManagementExperience{}
Hooks from the method
Return
null
. Nothing.
Usage
$NewProductManagementExperience = new NewProductManagementExperience(); $NewProductManagementExperience->enqueue_styles();
NewProductManagementExperience::enqueue_styles() NewProductManagementExperience::enqueue styles code WC 7.5.1
public function enqueue_styles() { if ( ! PageController::is_admin_or_embed_page() ) { return; } wp_enqueue_style( 'wp-edit-blocks' ); wp_enqueue_style( 'wp-format-library' ); wp_enqueue_editor(); /** * Enqueue any block editor related assets. * * @since 7.1.0 */ do_action( 'enqueue_block_editor_assets' ); }