General Settings > Shop settings.', 'blossom-floral' ) ) ) ); } endif; if( ! function_exists( 'blossom_floral_get_read_more' ) ) : /** * Display blog readmore button */ function blossom_floral_get_read_more(){ return esc_html( get_theme_mod( 'read_more_text', __( 'READ THE ARTICLE', 'blossom-floral' ) ) ); } endif; if( ! function_exists( 'blossom_floral_get_author_title' ) ) : /** * Display blog readmore button */ function blossom_floral_get_author_title(){ return esc_html( get_theme_mod( 'author_title', __( 'About The Author', 'blossom-floral' ) ) ); } endif; if( ! function_exists( 'blossom_floral_get_related_title' ) ) : /** * Display blog readmore button */ function blossom_floral_get_related_title(){ return esc_html( get_theme_mod( 'related_post_title', __( 'You may also like...', 'blossom-floral' ) ) ); } endif; if( ! function_exists( 'blossom_floral_get_footer_copyright' ) ) : /** * Footer Copyright */ function blossom_floral_get_footer_copyright(){ $copyright = get_theme_mod( 'footer_copyright' ); echo ''; if( $copyright ){ echo wp_kses_post( $copyright ); }else{ esc_html_e( '© Copyright ', 'blossom-floral' ); echo date_i18n( esc_html__( 'Y', 'blossom-floral' ) ); echo ' ' . esc_html( get_bloginfo( 'name' ) ) . '. '; esc_html_e( 'All Rights Reserved. ', 'blossom-floral' ); } echo ''; } endif;