Skip to content

Instantly share code, notes, and snippets.

View rvarbanov's full-sized avatar
:shipit:

Radi Varbanov rvarbanov

:shipit:
View GitHub Profile
add_action('template_redirect', 'bwp_template_redirect');
function bwp_template_redirect() {
if (is_author()) {
wp_redirect( home_url() );
exit;
}
}