<?php
/**
* BizGrove functions and definitions
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @subpackage BizGrove
* @since BizGrove 1.0
*/
function bizgrove_block_assets(){
// Enqueue theme stylesheet for the front-end.
wp_enqueue_style( 'bizgrove-style', get_stylesheet_directory_uri() . '/style.css', array(), wp_get_theme()->get( 'Version' ) );
wp_enqueue_style( 'bizgrove-fontawesome', get_stylesheet_directory_uri() . '/assets/font-awesome/css/all.css', array(), '5.15.3' );
wp_enqueue_script('bizgrove-main-script', get_stylesheet_directory_uri() . '/assets/js/script.js', array('jquery'), '1.0.0', true);
wp_enqueue_script('bizgrove-jquery-sticky', get_stylesheet_directory_uri() . '/assets/js/jquery-sticky.js', array('jquery') );
}
add_action('enqueue_block_assets', 'bizgrove_block_assets');
// register own theme pattern
function bizgrove_register_pattern_category() {
$patterns = array();
$block_pattern_categories = array(
'bizgrove' => array( 'label' => __( 'BizGrove', 'bizgrove' ) )
);
$block_pattern_categories = apply_filters( 'bizgrove_block_pattern_categories', $block_pattern_categories );
foreach ( $block_pattern_categories as $name => $properties ) {
if ( ! WP_Block_Pattern_Categories_Registry::get_instance()->is_registered( $name ) ) {
register_block_pattern_category( $name, $properties );
}
}
}
add_action( 'init', 'bizgrove_register_pattern_category'); |