Skip to content

Instantly share code, notes, and snippets.

@juanfra
Created May 13, 2016 14:55
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 juanfra/b5e8bc1b97eb835e84474fef8497d305 to your computer and use it in GitHub Desktop.
Save juanfra/b5e8bc1b97eb835e84474fef8497d305 to your computer and use it in GitHub Desktop.
Change the elements containing the logo.
<?php
// do not include the php tag.
function nice_logo_custom_wrap( $args ){
$args['before_title'] = '';
$args['after_title'] = '';
return $args;
}
add_filter( 'nice_logo_default_args', 'nice_logo_custom_wrap' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment