HEX
Server: LiteSpeed
System: Linux premium267.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: predezso (1249)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: //proc/self/cwd/wp-content/themes/blog-articles/inc/customizer/theme-options/footer.php
<?php
/**
 * Footer copyright
 */

// Footer copyright
$wp_customize->add_section(
	'blog_articles_footer_section',
	array(
		'title' => esc_html__( 'Footer Options', 'blog-articles' ),
		'panel' => 'blog_articles_theme_options_panel',
	)
);

$copyright_default = sprintf( esc_html_x( 'Copyright &copy; %1$s %2$s', '1: Year, 2: Site Title with home URL', 'blog-articles' ), '[the-year]', '[site-link]' );

// Footer copyright setting.
$wp_customize->add_setting(
	'blog_articles_copyright_txt',
	array(
		'default'           => $copyright_default,
		'sanitize_callback' => 'blog_articles_sanitize_html',
	)
);

$wp_customize->add_control(
	'blog_articles_copyright_txt',
	array(
		'label'   => esc_html__( 'Copyright text', 'blog-articles' ),
		'section' => 'blog_articles_footer_section',
		'type'    => 'textarea',
	)
);