• Skip to main content
  • Skip to primary sidebar
  • Business
  • WordPress
  • Security
  • Marketing
  • Publicity
  • Computing
  • Resources
  • Whatevs

Purely Wordpress

Just The Tech, News, and Info We Deem To Post

  • Home
  • About
  • Contact
  • Contribute
You are here: Home / Code Snippets / Change Genesis Site Title Link

Change Genesis Site Title Link

Genesis Theme Framework Code Snippets

Add the following code to your theme’s function.php file, or a functionality plugin to change the Genesis Site Title Link.

//* Manual Title Link
add_filter( 'genesis_seo_title', 'child_header_title', 10, 3 );
/** Change default Header URL */
function child_header_title( $title, $inside, $wrap ) {
    $inside = sprintf( '<a href="https://purelysupp.com/" title="%s">%s</a>', esc_attr( get_bloginfo( 'name' ) ), get_bloginfo( 'name' ) );
    return sprintf( '<%1$s class="site-title">%2$s</%1$s>', $wrap, $inside );
}

by Jack Alltrade on September 5, 2022

Filed Under: Code Snippets Tagged With: Code, Genesis Framework, Layout

Reader Interactions

Share Your Two Cents Cancel reply

Your email address will not be published. Required fields are marked *

Primary Sidebar

Categories

  • Code Snippets
  • Development
  • File Management
  • Genesis Framework
  • Hosting
  • Legacy
  • Plugins
  • SEO
  • Tech Terms
  • Themes
  • User Experience
  • User Interface
  • WordPress Core
  • WordPress Functionality

Warning! Use at your own risk!

As always, use at your own risk and remember to backup your site prior to inserting new code.

© Copyright Jack Alltrade & Associates 2025 · Purely Supplemental™ is a trademark of Jack Alltrade & Associates