Customize > Home Page Settings > Blog Section.', 'travel-agency' ) ) ) ); } endif; if( ! function_exists( 'travel_agency_get_blog_view_all_btn' ) ) : /** * Display blog view all button */ function travel_agency_get_blog_view_all_btn(){ return esc_html( get_theme_mod( 'blog_view_all', __( 'View All Posts', 'travel-agency' ) ) ); } endif; if( ! function_exists( 'travel_agency_get_related_title' ) ) : /** * Display blog view all button */ function travel_agency_get_related_title(){ return esc_html( get_theme_mod( 'related_title', __( 'You may also like...', 'travel-agency' ) ) ); } endif; if( ! function_exists( 'travel_agency_get_readmore_btn' ) ) : /** * Display blog view all button */ function travel_agency_get_readmore_btn(){ return esc_html( get_theme_mod( 'readmore', __( 'Read More', 'travel-agency' ) ) ); } endif; if( ! function_exists( 'travel_agency_get_footer_copyright' ) ) : /** * Prints footer copyright */ function travel_agency_get_footer_copyright(){ $copyright = get_theme_mod( 'footer_copyright' ); echo ''; if( $copyright ){ echo wp_kses_post( $copyright ); }else{ esc_html_e( '© Copyright ', 'travel-agency' ); echo date_i18n( esc_html__( 'Y', 'travel-agency' ) ); echo ' ' . esc_html( get_bloginfo( 'name' ) ) . '. '; } echo ''; } endif;