Skip to content

Instantly share code, notes, and snippets.

View noboo's full-sized avatar

noboo - デジタルバス noboo

View GitHub Profile
@DanielSantoro
DanielSantoro / functions.php
Created October 3, 2016 22:36
Remove Storefront Designed by WooThemes from Footer
<?php // Don't include this line
// Remove "Storefront Designed by WooThemes" from Footer
add_action( 'init', 'custom_remove_footer_credit', 10 );
function custom_remove_footer_credit () {
remove_action( 'storefront_footer', 'storefront_credit', 20 );
add_action( 'storefront_footer', 'custom_storefront_credit', 20 );
}