Title: Author link
Last modified: August 6, 2018

---

# Author link

 *  Resolved [ionadmin](https://wordpress.org/support/users/ionadmin/)
 * (@ionadmin)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/author-link-8/)
 * Using the Author Pro theme and Plugin…
 * The site is dedicated to a single author, and I’d like to be able to change the
   link behind the author’s name ([https://staging1.daisypettles.com/book-author/daisy-pettles/](https://staging1.daisypettles.com/book-author/daisy-pettles/))
   to go to an ABOUT page, instead of pulling up the Author’s books.
 * Thanks.
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fauthor-link-8%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [Nick C](https://wordpress.org/support/users/modernnerd/)
 * (@modernnerd)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/author-link-8/#post-10566200)
 * You could add this code to the bottom of your theme’s `functions.php` file, after
   all other code:
 *     ```
       add_filter( 'pre_term_link', 'custom_author_link', 10, 2 );
       function custom_author_link( $link, $term ) {
       	if ( $term->slug === 'daisy-pettles' ) {
       		$link = '/about-daisy/';
       	}
   
       	return $link;
       }
       ```
   
    -  This reply was modified 7 years, 9 months ago by [Nick C](https://wordpress.org/support/users/modernnerd/).
 *  Thread Starter [ionadmin](https://wordpress.org/support/users/ionadmin/)
 * (@ionadmin)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/author-link-8/#post-10571338)
 * Thanks, Nick – much appreciated!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Author link’ is closed to new replies.

 * ![](https://ps.w.org/genesis-author-pro/assets/icon.svg?rev=3409888)
 * [Osom Author Pro](https://wordpress.org/plugins/genesis-author-pro/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/genesis-author-pro/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/genesis-author-pro/)
 * [Active Topics](https://wordpress.org/support/plugin/genesis-author-pro/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/genesis-author-pro/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/genesis-author-pro/reviews/)

## Tags

 * [author pro](https://wordpress.org/support/topic-tag/author-pro/)

 * 2 replies
 * 2 participants
 * Last reply from: [ionadmin](https://wordpress.org/support/users/ionadmin/)
 * Last activity: [7 years, 9 months ago](https://wordpress.org/support/topic/author-link-8/#post-10571338)
 * Status: resolved