HEX
Server: Apache/2.4.29 (Ubuntu)
System: Linux bareserver 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
User: root (0)
PHP: 7.2.24-0ubuntu0.18.04.17
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,
Upload Files
File: /var/www/html/site/newsite/wp-content/themes/digital-download/inc/partials.php
<?php
/**
 * Digital Download Customizer Partials
 *
 * @package Digital_Download
 */

/**
 * Render the site title for the selective refresh partial.
 *
 * @return void
 */
function digital_download_customize_partial_blogname() {
	bloginfo( 'name' );
}

/**
 * Render the site tagline for the selective refresh partial.
 *
 * @return void
 */
function digital_download_customize_partial_blogdescription() {
	bloginfo( 'description' );
}

if( ! function_exists( 'digital_download_get_banner_title' ) ) :
/**
 * Banner Title
*/
function digital_download_get_banner_title(){
    return esc_html( get_theme_mod( 'banner_title', __( 'Most Selective Market of Digital Products for Creatives.', 'digital-download' ) ) );
}
endif;

if( ! function_exists( 'digital_download_get_banner_sub_title' ) ) :
/**
 * Banner Sub Title
*/
function digital_download_get_banner_sub_title(){
    return wp_kses_post( get_theme_mod( 'banner_subtitle', __( 'Curated Design Resources to Energize Your Creative Workflow.', 'digital-download' ) ) );
}
endif;

if( ! function_exists( 'digital_download_get_banner_label' ) ) :
/**
 * Banner Label
*/
function digital_download_get_banner_label(){
    return esc_html( get_theme_mod( 'banner_label', __( 'View All Products', 'digital-download' ) ) );
}
endif;

if( ! function_exists( 'digital_download_get_second_label' ) ) :
/**
 * Second Label
*/
function digital_download_get_second_label(){
    return esc_html( get_theme_mod( 'second_label', __( 'See Our Pricing', 'digital-download' ) ) );
}
endif;

if( ! function_exists( 'digital_download_get_download_title' ) ) :
/**
 * Download Section Title
*/
function digital_download_get_download_title(){
    return esc_html( get_theme_mod( 'download_title', __( 'Recently Added Items', 'digital-download' ) ) );
}
endif;

if( ! function_exists( 'digital_download_get_download_subtitle' ) ) :
/**
 * Download Section Sub Title
*/
function digital_download_get_download_subtitle(){
    return esc_html( get_theme_mod( 'download_subtitle', __( 'Checkout the latest products to be added to the marketplace, or <a href="#">Click here</a> to view all items.', 'digital-download' ) ) );
}
endif;

if( ! function_exists( 'digital_download_get_download_more_label' ) ) :
/**
 * Download More Label
*/
function digital_download_get_download_more_label(){
    return esc_html( get_theme_mod( 'download_more_label', __( 'Browse All Products', 'digital-download' ) ) );        
}
endif;

if( ! function_exists( 'digital_download_get_read_more' ) ) :
/**
 * Display blog readmore button
*/
function digital_download_get_read_more(){
    return esc_html( get_theme_mod( 'read_more_text', __( 'Read More', 'digital-download' ) ) );
}
endif;

if( ! function_exists( 'digital_download_get_related_title' ) ) :
/**
 * Display blog readmore button
*/
function digital_download_get_related_title(){
    return esc_html( get_theme_mod( 'related_post_title', __( 'You may also like...', 'digital-download' ) ) );
}
endif;

if( ! function_exists( 'digital_download_get_footer_copyright' ) ) :
/**
 * Footer Copyright
*/
function digital_download_get_footer_copyright(){
    $copyright = get_theme_mod( 'footer_copyright' );
    echo '<span class="copyright">';
    if( $copyright ){
        echo wp_kses_post( $copyright );
    }else{
        esc_html_e( '&copy; Copyright ', 'digital-download' );
        echo date_i18n( esc_html__( 'Y', 'digital-download' ) );
        echo ' <a href="' . esc_url( home_url( '/' ) ) . '">' . esc_html( get_bloginfo( 'name' ) ) . '</a>. ';
        esc_html_e( 'All Rights Reserved. ', 'digital-download' );
    }
    echo '</span>'; 
}
endif;