How to Hide the Sign In Option on MyLi...
This MyListing code snippet helps website owners hide the “Sign In” optio...

WPCodeBox
607
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' );





