"transsocial-theme-$block_name", 'src' => get_theme_file_uri( "assets/css/blocks/$block_name.css" ), 'path' => get_theme_file_path( "assets/css/blocks/$block_name.css" ), ); // Replace the "core" prefix if you are styling blocks from plugins. wp_enqueue_block_style( "core/$block_name", $args ); } } add_action( 'after_setup_theme', 'transsocial_theme_setup' ); /** * Enqueue the CSS files. * * @since 1.0.0 * * @return void */ function transsocial_theme_styles() { wp_enqueue_style( 'transsocial-theme-style', get_stylesheet_uri(), [], wp_get_theme()->get( 'Version' ) ); } add_action( 'wp_enqueue_scripts', 'transsocial_theme_styles' );