Home › Forums › WordPress › Admin Customization › Remove WordPress Version Number From Footer
- This topic has 0 replies, 1 voice, and was last updated 8 years, 2 months ago by Layer7web.
Viewing 0 reply threads
-
AuthorPosts
-
-
September 13, 2016 at 10:23 am #2484
Layer7webKeymasterPHP123456789/*** Remove the version number in the footer except for Admins*/add_action( 'admin_menu', 'l7w_my_footer_shh' );function l7w_my_footer_shh() {if ( ! current_user_can('manage_options') ) { // 'update_core' may be more appropriateremove_filter( 'update_footer', 'core_update_footer' );}}
-
-
AuthorPosts
Viewing 0 reply threads
You must be logged in to reply to this topic.
Comments are closed.