| Server IP : 47.82.179.145 / Your IP : 216.73.216.89 Web Server : nginx/1.26.3 System : Linux iZt4n9czhka2zvqfajdlr2Z 6.8.0-63-generic #66-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 13 20:25:30 UTC 2025 x86_64 User : www ( 1001) PHP Version : 8.3.30 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,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_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/scuipturepactory.com/wp-content/themes/blossom-fashion/inc/ |
Upload File : |
<?php
/**
* Customizer Partials
*
* @package Blossom_Fashion
*/
/**
* Render the site title for the selective refresh partial.
*
* @return void
*/
function blossom_fashion_customize_partial_blogname() {
bloginfo( 'name' );
}
/**
* Render the site tagline for the selective refresh partial.
*
* @return void
*/
function blossom_fashion_customize_partial_blogdescription() {
bloginfo( 'description' );
}
if( ! function_exists( 'blossom_fashion_get_shop_title' ) ) :
/**
* Display blog readmore button
*/
function blossom_fashion_get_shop_title(){
return esc_html( get_theme_mod( 'shop_section_title', __( 'Welcome to our Shop!', 'blossom-fashion' ) ) );
}
endif;
if( ! function_exists( 'blossom_fashion_get_shop_content' ) ) :
/**
* Display blog readmore button
*/
function blossom_fashion_get_shop_content(){
return wp_kses_post( get_theme_mod( 'shop_section_content', __( 'This option can be change from Customize > General Settings > Shop settings.', 'blossom-fashion' ) ) );
}
endif;
if( ! function_exists( 'blossom_fashion_get_read_more' ) ) :
/**
* Display blog readmore button
*/
function blossom_fashion_get_read_more(){
return esc_html( get_theme_mod( 'read_more_text', __( 'Continue Reading', 'blossom-fashion' ) ) );
}
endif;
if( ! function_exists( 'blossom_fashion_get_author_title' ) ) :
/**
* Display blog readmore button
*/
function blossom_fashion_get_author_title(){
return esc_html( get_theme_mod( 'author_title', __( 'About Author', 'blossom-fashion' ) ) );
}
endif;
if( ! function_exists( 'blossom_fashion_get_related_title' ) ) :
/**
* Display blog readmore button
*/
function blossom_fashion_get_related_title(){
return esc_html( get_theme_mod( 'related_post_title', __( 'You may also like...', 'blossom-fashion' ) ) );
}
endif;
if( ! function_exists( 'blossom_fashion_get_popular_title' ) ) :
/**
* Display blog readmore button
*/
function blossom_fashion_get_popular_title(){
return esc_html( get_theme_mod( 'popular_post_title', __( 'Popular Posts', 'blossom-fashion' ) ) );
}
endif;
if( ! function_exists( 'blossom_fashion_get_bottom_shop_title' ) ) :
/**
* Display blog readmore button
*/
function blossom_fashion_get_bottom_shop_title(){
return esc_html( get_theme_mod( 'bottom_shop_section_title', __( 'Shop My Closet', 'blossom-fashion' ) ) );
}
endif;
if( ! function_exists( 'blossom_fashion_get_footer_copyright' ) ) :
/**
* Footer Copyright
*/
function blossom_fashion_get_footer_copyright(){
$copyright = get_theme_mod( 'footer_copyright' );
echo '<span class="copyright">';
if( $copyright ){
echo wp_kses_post( $copyright );
}else{
esc_html_e( '© Copyright ', 'blossom-fashion' );
echo date_i18n( esc_html__( 'Y', 'blossom-fashion' ) );
echo ' <a href="' . esc_url( home_url( '/' ) ) . '">' . esc_html( get_bloginfo( 'name' ) ) . '</a>. ';
esc_html_e( 'All Rights Reserved. ', 'blossom-fashion' );
}
echo '</span>';
}
endif;