first commit

This commit is contained in:
Prospect Ogujiuba
2024-07-02 11:00:03 -04:00
commit 7464e10f35
119 changed files with 12935 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<?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');