* @copyright Copyright (c) 2018, Chris Baldelomar * @link https://webplantmedia.com/product/brimstone-wordpress-theme/ * @license http://www.gnu.org/licenses/gpl-2.0.html */ /** * Advanced Gutenberg block features that require opt-in support in the theme. * * @since Brimstone 1.01 * * @return void */ function brimstone_gutenberg_supported_features() { // Add support for full width images and other content such as videos. add_theme_support( 'align-wide' ); } add_action( 'after_setup_theme', 'brimstone_gutenberg_supported_features' ); /** * Enqueue theme styles to use inside Gutenberg editor. * * @since Brimstone 1.01 * * @return void */ function brimstone_gutenberg_styles() { // Add custom fonts to Gutenberg. wp_enqueue_style( 'brimstone-body-font', get_parent_theme_file_uri() . '/fonts/lato/stylesheet.css', array(), BRIMSTONE_VERSION ); } add_action( 'enqueue_block_editor_assets', 'brimstone_gutenberg_styles' );