From bd5222443f217f8e3842ba33cf20f0bf740cc366 Mon Sep 17 00:00:00 2001 From: Adolfo Reyna Date: Fri, 13 Mar 2026 11:53:35 -0400 Subject: [PATCH] Update default author name and enable author section by default --- front-page.php | 8 ++++---- functions.php | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/front-page.php b/front-page.php index 24e3535..698b5b2 100644 --- a/front-page.php +++ b/front-page.php @@ -54,26 +54,26 @@ $hero_bg = get_theme_mod('hero_background_image', get_template_directory_uri() . - +
<?php echo esc_attr(get_theme_mod('author_name', 'Adolfo Reyna')); ?>

-

+

diff --git a/functions.php b/functions.php index 716042c..b8fdbe2 100644 --- a/functions.php +++ b/functions.php @@ -123,7 +123,7 @@ function wisdom1_customize_register($wp_customize) // Enable Author Section $wp_customize->add_setting('show_author_section', array( - 'default' => false, + 'default' => true, 'sanitize_callback' => 'rest_sanitize_boolean', )); $wp_customize->add_control('show_author_section', array( @@ -134,7 +134,7 @@ function wisdom1_customize_register($wp_customize) // Author Name $wp_customize->add_setting('author_name', array( - 'default' => 'Adolfo Reyna', + 'default' => 'David Clemetson', 'sanitize_callback' => 'sanitize_text_field', )); $wp_customize->add_control('author_name', array(