golden hour
/home/doctorbruno/public_html/doc-noc.com/wp-content/themes/fitness-hub/acmethemes/gutenberg
⬆️ Go Up
Upload
File/Folder
Size
Actions
gutenberg-edit.css
1.85 KB
Del
OK
gutenberg-front-rtl.css
28.71 KB
Del
OK
gutenberg-front.css
1.16 KB
Del
OK
gutenberg-init.php
2.85 KB
Del
OK
Edit: gutenberg-init.php
<?php if ( ! function_exists( 'fitness_hub_gutenberg_setup' ) ) : /** * Making theme gutenberg compatible */ function fitness_hub_gutenberg_setup() { add_theme_support( 'align-wide' ); add_theme_support( 'wp-block-styles' ); } endif; add_action( 'after_setup_theme', 'fitness_hub_gutenberg_setup' ); function fitness_hub_dynamic_editor_styles(){ $fitness_hub_customizer_all_values = fitness_hub_get_theme_options(); $custom_css = ''; $custom_css .= " .edit-post-visual-editor, .edit-post-visual-editor p { color: #666; }"; $custom_css .= " .wp-block .wp-block-heading h1, .wp-block .wp-block-heading h1 a, .wp-block .wp-block-heading h2, .wp-block .wp-block-heading h2 a, .wp-block .wp-block-heading h3, .wp-block .wp-block-heading h3 a, .wp-block .wp-block-heading h4, .wp-block .wp-block-heading h4 a, .wp-block .wp-block-heading h5, .wp-block .wp-block-heading h5 a, .wp-block .wp-block-heading h6, .wp-block .wp-block-heading h6 a{ color: #3a3a3a; }"; if( isset($fitness_hub_customizer_all_values['fitness-hub-link-color'])){ $fitness_hub_link_color = esc_attr( $fitness_hub_customizer_all_values['fitness-hub-link-color'] ); $custom_css .= " .wp-block a{ color: {$fitness_hub_link_color}; }"; } if( isset($fitness_hub_customizer_all_values['fitness-hub-link-hover-color'])){ $fitness_hub_link_hover_color = esc_attr( $fitness_hub_customizer_all_values['fitness-hub-link-hover-color'] ); $custom_css .= " .wp-block a:hover, .wp-block a:active, .wp-block a:focus{ color: {$fitness_hub_link_hover_color}; }"; } return wp_strip_all_tags( $custom_css ); } /** * Enqueue block editor style */ function fitness_hub_block_editor_styles() { wp_enqueue_style( 'fitness-hub-googleapis', '//fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i', array(), null ); wp_enqueue_style( 'fitness-hub-block-editor-styles', get_template_directory_uri() . '/acmethemes/gutenberg/gutenberg-edit.css', false, '1.0' ); /** * Styles from the customizer */ wp_add_inline_style( 'fitness-hub-block-editor-styles', fitness_hub_dynamic_editor_styles() ); } add_action( 'enqueue_block_editor_assets', 'fitness_hub_block_editor_styles',99 ); function fitness_hub_gutenberg_scripts() { wp_enqueue_style( 'fitness-hub-block-front-styles', get_template_directory_uri() . '/acmethemes/gutenberg/gutenberg-front.css', false, '1.0' ); wp_style_add_data( 'fitness-hub-block-front-styles', 'rtl', 'replace' ); } add_action( 'wp_enqueue_scripts', 'fitness_hub_gutenberg_scripts' );
Save