HEX
Server: Apache
System: Linux p102.lithium.hosting 4.18.0-553.141.1.el8_10.x86_64 #1 SMP Fri Jul 10 17:48:02 UTC 2026 x86_64
User: bvzmoamr (9955)
PHP: 8.1.34
Disabled: syslog
Upload Files
File: /var/www/html/wp-content/themes/bch-consulting/lib/customize.php
<?php
/**
 * BCH Consulting.
 *
 * This file adds the Customizer additions to the Genesis Sample Theme.
 *
 * @package Genesis Sample
 * @author  StudioPress
 * @license GPL-2.0-or-later
 * @link    https://www.studiopress.com/
 */

add_action( 'customize_register', 'bch_consulting_customizer_register' );
/**
 * Registers settings and controls with the Customizer.
 *
 * @since 2.2.3
 *
 * @param WP_Customize_Manager $wp_customize Customizer object.
 */
function bch_consulting_customizer_register( $wp_customize ) {

	$appearance = genesis_get_config( 'appearance' );

	$wp_customize->add_setting(
		'bch_consulting_link_color',
		[
			'default'           => $appearance['default-colors']['link'],
			'sanitize_callback' => 'sanitize_hex_color',
		]
	);

	$wp_customize->add_control(
		new WP_Customize_Color_Control(
			$wp_customize,
			'bch_consulting_link_color',
			[
				'description' => __( 'Change the color of post info links and button blocks, the hover color of linked titles and menu items, and more.', 'bch-consulting' ),
				'label'       => __( 'Link Color', 'bch-consulting' ),
				'section'     => 'colors',
				'settings'    => 'bch_consulting_link_color',
			]
		)
	);

	$wp_customize->add_setting(
		'bch_consulting_accent_color',
		[
			'default'           => $appearance['default-colors']['accent'],
			'sanitize_callback' => 'sanitize_hex_color',
		]
	);

	$wp_customize->add_control(
		new WP_Customize_Color_Control(
			$wp_customize,
			'bch_consulting_accent_color',
			[
				'description' => __( 'Change the default hover color for button links, menu buttons, and submit buttons. The button block uses the Link Color.', 'bch-consulting' ),
				'label'       => __( 'Accent Color', 'bch-consulting' ),
				'section'     => 'colors',
				'settings'    => 'bch_consulting_accent_color',
			]
		)
	);

	$wp_customize->add_setting(
		'bch_consulting_logo_width',
		[
			'default'           => 350,
			'sanitize_callback' => 'absint',
			'validate_callback' => 'bch_consulting_validate_logo_width',
		]
	);

	// Add a control for the logo size.
	$wp_customize->add_control(
		'bch_consulting_logo_width',
		[
			'label'       => __( 'Logo Width', 'bch-consulting' ),
			'description' => __( 'The maximum width of the logo in pixels.', 'bch-consulting' ),
			'priority'    => 9,
			'section'     => 'title_tagline',
			'settings'    => 'bch_consulting_logo_width',
			'type'        => 'number',
			'input_attrs' => [
				'min' => 100,
			],

		]
	);

}

/**
 * Displays a message if the entered width is not numeric or greater than 100.
 *
 * @param object $validity The validity status.
 * @param int    $width The width entered by the user.
 * @return int The new width.
 */
function bch_consulting_validate_logo_width( $validity, $width ) {

	if ( empty( $width ) || ! is_numeric( $width ) ) {
		$validity->add( 'required', __( 'You must supply a valid number.', 'bch-consulting' ) );
	} elseif ( $width < 100 ) {
		$validity->add( 'logo_too_small', __( 'The logo width cannot be less than 100.', 'bch-consulting' ) );
	}

	return $validity;

}