How to Use Hooks
function your_function_name() { ?>
Insert your custom content here
<?php
}
add_filter( 'hook_name', 'your_function_name' );
Replace hook_name with the hook where you want to add something.
All PHP snippets should be added via a child theme's functions.php file.