![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/matelopsrp.com/wp-content/themes/master-business/inc/customizer/ |
<?php /** * Customizer partials. * * @package Master_Business */ /** * Render the site title for the selective refresh partial. * * @since 1.0.0 * * @return void */ function master_business_customize_partial_blogname() { bloginfo( 'name' ); } /** * Render the site title for the selective refresh partial. * * @since 1.0.0 * * @return void */ function master_business_customize_partial_blogdescription() { bloginfo( 'description' ); } /** * Partial for copyright text. * * @since 1.0.0 * * @return void */ function master_business_render_partial_copyright_text() { $copyright_text = master_business_get_option( 'copyright_text' ); $copyright_text = apply_filters( 'master_business_filter_copyright_text', $copyright_text ); if ( ! empty( $copyright_text ) ) { $copyright_text = wp_kses_data( $copyright_text ); } echo $copyright_text; }