';
if(function_exists('best_shop_pro_textdomain')) {
if($footer_link === ''){
//hide link
echo ' ' . wp_kses_post(best_shop_get_setting( 'footer_copyright' )) . ' ';
} else {
//show link
echo ' ' . wp_kses_post(best_shop_get_setting( 'footer_copyright' )) . ' ';
}
} else{
if($copyright === ''){
//free text domain
echo ' ' . esc_html__('A theme by Gradient Themes ©' , 'best-shop') . ' ';
} else{
echo ' ' . esc_html(best_shop_get_setting( 'footer_copyright' )).esc_html__(' - A theme by Gradient Themes ©', 'best-shop') . ' ';
}
}
echo '';
}
endif;
if( ! function_exists( 'best_shop_ed_author_link' ) ) :
/**
* Show Author link in footer
*/
function best_shop_ed_author_link(){
echo '';
esc_html_e( 'Developed By ', 'best-shop' );
echo '' . esc_html__( 'Gradient Themes', 'best-shop' ) . '';
echo '';
}
endif;