Created
February 18, 2015 06:11
-
-
Save jamiemarsland/5e618baeda2dd5199d4a to your computer and use it in GitHub Desktop.
Remove WooThemes credit in Storefront footer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"> | |
© <?php echo get_bloginfo( 'name' ) . ' ' . get_the_date( 'Y' ); ?> | |
</div><!-- .site-info --> | |
<?php | |
} |
You don't need to remove the action and add your own. There's a filter for this:
add_filter('storefront_credit_link', '__return_false');
This code works well. But one suggestion; some people might want to display the current year. The get_the_date retrieves the year of the blog. So, if you want to always display the most current year (to make your website look up-to-date), use "date" instead:
<?php echo get_bloginfo( 'name' ) . ' ' . date( 'Y' ); ?>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Another person just wanting to say thank you!