📅  最后修改于: 2022-03-11 14:54:26.341000             🧑  作者: Mango
// remove default storefront footer (credit)
function pk_remove_storefront_footer() {
remove_action('storefront_footer', 'storefront_credit', 20);
}
add_action('init', 'pk_remove_storefront_footer', 10);