Code-Snippets-Functions/Execute a function on a child site/WooCommerce/remove-storefront-footer-credits.txt

5 lines
164 B
Text

add_action( 'wp', 'wc_remove_storefront_credits' );
function wc_remove_storefront_credits() {
remove_action( 'storefront_footer', 'storefront_credit', 20 );
}