luizbills / wp-tweaks

Several opinionated wordpress tweaks focused in :shield: security and :zap: performance.
https://wordpress.org/plugins/wp-tweaks/
GNU General Public License v3.0
31 stars 8 forks source link

Always show wp version on right footer #26

Closed luizbills closed 2 years ago

luizbills commented 2 years ago

Snippet:

add_filter( 'update_footer', 'wp_tweaks_update_footer', 20 );
function wp_tweaks_update_footer ( $msg ) {
    return sprintf( esc_html__( 'Version %s' ), get_bloginfo( 'version', 'display' ) );
}