Skip to content

Instantly share code, notes, and snippets.

@dantetesta
Last active June 3, 2022 11:37
Show Gist options
  • Select an option

  • Save dantetesta/8c629fb8522e4080b2da695e6e43057d to your computer and use it in GitHub Desktop.

Select an option

Save dantetesta/8c629fb8522e4080b2da695e6e43057d to your computer and use it in GitHub Desktop.
/*By ASK Jarvis + Dante Testa */
/* Adicione isso ao functions.php do seu tema e siga o vídeo >>> */
<?php
function my_favicon() {
$options = get_option('configsite'); /*SLUG DO OPTIONS PAGES*/
echo '<link rel="shortcut icon" href="'.$options['myicon'].'" />'; /* NOME DO CAMPO MEDIA URL */
}
add_action('wp_head', 'my_favicon');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment