Refactor theme comments and descriptions to use a consistent hyphen format instead of an em dash. Update color palette values in theme settings and JSON configuration for improved aesthetics. Enhance contact section icons with Font Awesome for better visual representation. Add GitHub Copilot and contributor instructions for improved collaboration and development practices.

This commit is contained in:
Matt Batchelder
2026-02-20 22:06:53 -05:00
parent 19ee98c68d
commit 025df5fd24
24 changed files with 726 additions and 324 deletions

View File

@@ -1,6 +1,6 @@
<?php
/**
* Theme Setup registers supports, menus, patterns, and editor styles.
* Theme Setup - registers supports, menus, patterns, and editor styles.
*
* @package OTS_Theme
*/
@@ -50,10 +50,10 @@ add_action( 'after_setup_theme', function () {
/* ── Block pattern categories ──────────────────────────────── */
add_action( 'init', function () {
register_block_pattern_category( 'oribi-pages', [
'label' => __( 'Oribi Tech Pages', 'ots-theme' ),
'label' => __( 'Oribi Tech - Pages', 'ots-theme' ),
] );
register_block_pattern_category( 'oribi-sections', [
'label' => __( 'Oribi Tech Sections', 'ots-theme' ),
'label' => __( 'Oribi Tech - Sections', 'ots-theme' ),
] );
} );