How to Change the WordPress Login Page...
This snippet allows you to easily change the URL of the logo on your WordPress login ...

WPCodeBox
39
Learn how to easily change WooCommerce widget titles with this helpful snippet. Perfect for customizing your online store.
<?php
add_filter( 'widget_title', function( $title, $instance, $id_base ) {
if( 'onsale' == $id_base) {
return "My new cool title for the On Sale widget.";
}
}, 10, 3);