Can i add custom code in Source in specific page, Header from function.php?
there are many plugins that do some job but can i add custom code per page? Also i mean specific code by pages,posts? with function.php? For example, that code will appear every page:
function hook_link() {
?
link href="http://buhehe.de/wp-content/uploads/2017/12/Buhehe.ico" rel="shortcut icon" type="image/x-icon"
?php
}
add_action('wp_head', 'hook_link');
Can i make something like this with function.php for every page customed and specified?