Skip to content

Instantly share code, notes, and snippets.

@staylor
Created December 1, 2012 01:18
Show Gist options
  • Save staylor/4179951 to your computer and use it in GitHub Desktop.
Save staylor/4179951 to your computer and use it in GitHub Desktop.
Balls
function _override_home_url( $url, $path = '' ) {
if ( $path && false === strpos( $url, $path ) )
$url .= $path;
return $url;
}
add_filter( 'home_url', '_override_home_url', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment