Viewing 1 replies (of 1 total)
  • Moderator Jose Castaneda

    (@jcastaneda)

    THEME COFFEE MONKEY

    Hi!

    I can think of using the get_the_author_user_url filter. Using either a child theme, or functionality plugin you can try something like:

    add_filter( 'get_the_author_user_url', 'jmc_filtered_author', 10 );
    function jmc_filtered_author( $value ){
    	return home_url( '/about' );
    }

    Let us know if that works!

Viewing 1 replies (of 1 total)
  • The topic ‘changing the author link’ is closed to new replies.