get( 'Version' ) ); // Enqueue theme stylesheet. wp_enqueue_style( 'adonay-style' ); } endif; add_action( 'wp_enqueue_scripts', 'adonay_styles' ); /** * Register pattern categories. */ if ( ! function_exists( 'adonay_pattern_categories' ) ) : /** * Register pattern categories * * @since Adonay 1.0 * @return void */ function adonay_pattern_categories() { register_block_pattern_category( 'page', array( 'label' => _x( 'Pages', 'Block pattern category', 'adonay' ), 'description' => __( 'A collection of full page layouts.', 'adonay' ), ) ); } endif; add_action( 'init', 'adonay_pattern_categories' );