themes-wordpress/loudness/functions.php

77 lines
1.5 KiB
PHP
Raw Permalink Normal View History

<?php
/**
2022-09-21 21:51:32 +00:00
* Loudness functions and definitions
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
2022-09-21 21:51:32 +00:00
* @package Loudness
* @since Loudness 1.0
*/
if ( ! function_exists( 'loudness_support' ) ) :
/**
* Sets up theme defaults and registers support for various WordPress features.
*
2022-09-21 21:51:32 +00:00
* @since Loudness 1.0
*
* @return void
*/
function loudness_support() {
// Enqueue editor styles.
add_editor_style( 'style.css' );
// Make theme available for translation.
load_theme_textdomain( 'loudness' );
}
endif;
add_action( 'after_setup_theme', 'loudness_support' );
if ( ! function_exists( 'loudness_styles' ) ) :
/**
* Enqueue styles.
*
2022-09-21 21:51:32 +00:00
* @since Loudness 1.0
*
* @return void
*/
function loudness_styles() {
// Register theme stylesheet.
wp_register_style(
2022-09-21 21:51:32 +00:00
'loudness-style',
get_stylesheet_directory_uri() . '/style.css',
array(),
wp_get_theme()->get( 'Version' )
);
// Enqueue theme stylesheet.
2022-09-21 21:51:32 +00:00
wp_enqueue_style( 'loudness-style' );
}
endif;
add_action( 'wp_enqueue_scripts', 'loudness_styles' );
2022-09-19 16:19:50 +00:00
function loudness_init() {
2022-09-19 16:19:50 +00:00
if ( ! WP_Block_Pattern_Categories_Registry::get_instance()->is_registered( 'illustrations' ) ) {
2022-09-21 21:51:32 +00:00
register_block_pattern_category( 'illustrations', array( 'label' => __( 'Illustrations', 'loudness' ) ) );
2022-09-19 16:19:50 +00:00
}
register_block_style(
'core/navigation-link',
array(
'name' => 'navigation-link-button',
2022-09-21 21:51:32 +00:00
'label' => __( 'Button', 'loudness' ),
2022-09-19 16:19:50 +00:00
)
);
}
add_action( 'init', 'loudness_init' );