April 8, 2026

How to link author name to a custom page in Blogger

|

Quick Answer: How to link Blogger author name to a custom page:

  1. Create a custom page and copy its URL.
  2. Go to Theme > Edit HTML.
  3. Search for the author tag: <a class='g-profile url' expr:href='data:post.authorProfileUrl' rel='author' title='author profile'> 
  4. Replace expr:href='data:post.authorProfileUrl' with href='YOUR_URL'.
  5. Save your changes.

This is another useful post from the DiGiztal Blogspot Blogger Tips series.

By default, when a reader clicks on the author name, Blogger automatically redirects them to your generic Blogger Profile page.

If your author name appears at the top of your blog post (above the title), you can change this behavior by editing the entry meta section of your code. 

Follow these steps to update your Blogger HTML template and redirect that link to a custom page instead:


How to redirect the author name link above the post title

Follow these steps to update your Blogger HTML template and redirect that specific link:

  1. Go to your Blogger Dashboard.
  2. Click Theme in the left sidebar.
  3. Click the down arrow next to CUSTOMIZE and select Edit HTML.
  4. Press Ctrl + F (Windows) or Cmd + F (Mac) to open the search box.
  5. Search for the specific meta container code: <div class='entry-meta'>
  6. Locate the anchor tag (<a>) inside that section that contains expr:href='data:post.authorProfileUrl'.

Replace the default dynamic link code with your static custom URL as shown below:

<!-- Find this line inside the entry-meta -->
<a class='g-profile url' expr:href='data:post.authorProfileUrl' rel='author' title='author profile'>

<a class='g-profile url' href='https://yourblog.blogspot.com/p/about.html' rel='author' title='author profile'>
  <span itemprop='name'><data:post.author/></span>
</a>

Troubleshooting tip

CRITICAL STEP: When you paste your custom link, you must change expr:href to simply href

If you leave "expr:" in the code, Blogger will try to read your URL as a variable and throw an error.

  1. Click the Save icon at the top right of the editor.
  2. View your live blog and click the author name to ensure it redirects to your new custom page.