piątek, 5 października 2018

Usunięcie "Storefront Designed by WooThemes" z motywu StoreFront od woocomerce

Usunięcie "Storefront Designed by WooThemes" z motywu StoreFront od woocomerce
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 );
}
function custom_storefront_credit() {
?>
<div class="site-info">
&copy; echo get_bloginfo( 'name' ) . ' ' . get_the_date( 'Y' ); ?>
</div>
}
// Remove "Storefront Designed by WooThemes" from Footer