How do I add the following code to the header in wordpress using X

Hi guys the name pretty much says it, here is the code I would like to add:

<link rel="apple-touch-icon" sizes="180x180" href="wp-content/uploads/favicon/apple-touch-icon.png">

Thanks for the help!

John

Hi John,

Please add this code to the functions.php file of the child theme:


add_action('wp_head', 'add_header_code');
function add_header_code(){
?>
    <link rel="apple-touch-icon" sizes="180x180" href="wp-content/uploads/favicon/apple-touch-icon.png">
<?php
};

Hope this helps.

Wow! Nice response time well done!

You are most welcome. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.