How to Disable CSS Lint in CodeMirror ...
Learn how to easily disable CSS Lint in CodeMirror for WordPress with this simple sol...

WPCodeBox
454
Learn how to disable WordPress author pages and redirect them to your site’s home page for improved SEO and site management.
<?php
function author_page_redirect() {
if ( is_author() ) {
wp_redirect( home_url() );
}
}
add_action( 'template_redirect', 'author_page_redirect' );





