Files
leon_pharmacy/inc/styles_and_scripts.php
Prospect Ogujiuba 7464e10f35 first commit
2024-07-02 11:00:03 -04:00

11 lines
364 B
PHP

<?php
function custom_block_editor_styles()
{
// Enqueue block editor style
wp_enqueue_style('custom-block-editor-styles', get_template_directory_uri() . '/assets/css/tailwind_for_wp_editor.css', false, '1.0', 'all');
// You can add more styles or scripts here if needed
}
add_action('enqueue_block_editor_assets', 'custom_block_editor_styles');