Getting an error. Need to add favicon in my child theme functions.php. What's wrong?
When I put this code in my functions.php
add_action('wp_head', 'my_favicon');
function my_favicon() {
echo link rel='shortcut icon' href=' . get_stylesheet_directory_uri() .
'/images/favicon.ico'';
}
I get
[Message from webpage]: There has been a critical error on this website. Learn more about debugging in WordPress.
What's wrong with my code?
Topic favicon child-theme Wordpress
Category Web