Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created September 21, 2012 13:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/513e7bef87225f0819b8 to your computer and use it in GitHub Desktop.
Save billerickson/513e7bef87225f0819b8 to your computer and use it in GitHub Desktop.
<?php
/**
* Logo URL
*
*/
function be_logo_url( $title, $inside, $wrap ) {
$inside = sprintf( '<a href="%s" title="%s">%s</a>', esc_url( 'http://www.example.com' ), esc_attr( get_bloginfo( 'name' ) ), get_bloginfo( 'name' ) );
$title = sprintf( '<%s id="title">%s</%s>', $wrap, $inside, $wrap );
return $title;
}
add_filter( 'genesis_seo_title', 'be_logo_url', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment