mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
10 lines
226 B
Text
10 lines
226 B
Text
add_filter( 'author_link', function ( $link ) {
|
|
return home_url( 'about' );
|
|
});
|
|
|
|
add_action( 'template_redirect', function () {
|
|
if ( is_author() ) {
|
|
wp_redirect( home_url( 'about' ) );
|
|
exit;
|
|
}
|
|
});
|