get('Version') ); wp_enqueue_style( 'bizora-font-awesome', get_template_directory_uri() . '/assets/css/font-awesome/css/all.css', [], wp_get_theme()->get('Version') ); wp_enqueue_style('dashicons'); } add_action('wp_enqueue_scripts', 'bizora_styles'); // admin style function bizora_admin_styles() { wp_enqueue_style( 'bizora-admin-style', get_template_directory_uri() . '/assets/css/theme-info.css', [], wp_get_theme()->get('Version') ); } add_action('admin_enqueue_scripts', 'bizora_admin_styles'); // enqueue dashicons add_action('enqueue_block_assets', function (): void { wp_enqueue_style('dashicons'); }); function bizora_excerpt_length($length) { $excerpt_length = 20; if (is_admin()) return $length; return $excerpt_length; } add_filter('excerpt_length', 'bizora_excerpt_length'); // add block patterns require get_template_directory() . '/inc/block-patterns.php'; // admin Info require get_template_directory() . '/class/admin-info.php'; /** * Register block styles. */ if (! function_exists('bizora_block_styles')) : /** * Register custom block styles * * @since bizorae * @return void */ function bizora_block_styles() { register_block_style( 'core/paragraph', array( 'name' => 'admin-icon', 'label' => __('Admin Icon', 'bizora'), /* * Styles for the custom Arrow icon style of the Details block */ 'inline_style' => ' .is-style-admin-icon:before { content: "\f110"; font-family: "dashicons"; } .is-style-admin-icon span{ display: none; }', ) ); } endif; add_action('init', 'bizora_block_styles');