There are no index.php, single.php, post.php, page.php file in Genesis Child theme…
Contact your theme author, I have not used Genesis Child theme so I am not sure the file structure of the theme.
Tom
(@tom-hickey)
You can hook this in Genesis with something like:
add_action( 'genesis_entry_footer', 'themeprefix_print', 20 );
function themeprefix_print() {
if(function_exists('wp_print')) {
print_link();
}
}
See also for placement: https://wordpress.org/plugins/genesis-visual-hook-guide/
You might also try https://wordpress.org/plugins/genesis-printstyle-plus/
Thanks for helping @tom-hickey. I figured it out.