Skip to content

Instantly share code, notes, and snippets.

@matheusgimenez
Created August 19, 2015 02:00
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 matheusgimenez/9e105f1738b8593c97d0 to your computer and use it in GitHub Desktop.
Save matheusgimenez/9e105f1738b8593c97d0 to your computer and use it in GitHub Desktop.
function add_default_favicon() {
if ( ! get_option( 'site_icon') ) {
echo '<link href="' . get_template_directory_uri() . '/ENDERECO-DO-ARQUIVO-DENTRO-DO-TEMA" rel="shortcut icon" />';
}
}
add_action( 'wp_head', 'add_default_favicon' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment