File: /home/cga.org.uk/public_html/wp-content/themes/wens-thought/functions.php
<?php
// Exit if accessed directly
if ( !defined( 'ABSPATH' ) ) exit;
function wens_thought_scripts(){
// enqueue parent style
wp_enqueue_style('wens-thought-parent-style', get_template_directory_uri() . '/style.css');
}
add_action('wp_enqueue_scripts', 'wens_thought_scripts');
function wens_thought_register_block_pattern_categories(){
register_block_pattern_category(
'wens-thought',
array( 'label' => __( 'WENS Thought', 'wens-thought' ) )
);
}
add_action('init', 'wens_thought_register_block_pattern_categories');