Last active
June 3, 2022 11:37
-
-
Save dantetesta/8c629fb8522e4080b2da695e6e43057d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*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