Hi there,
1. You could use a plugin like this: https://wordpress.org/plugins/ad-inserter/
Alternatively, you can place your Adsense code inside a shortcode and then use the shortcode.
function generate_adsense_shortcode() {
?>
Place your adsense code in here
<?php }
add_shortcode( 'adsense', 'generate_adsense_shortcode' );
Adding PHP: https://generatepress.com/knowledgebase/adding-php-functions/
Then you would use the [adsense] shortcode in your content.
2. Where would you want the banner to appear? You could use our GP Hooks add-on, and then use this if conditional:
<?php if ( is_front_page() ) : ?>
Everything in here will only show up on the homepage
<?php endif; ?>
Then check the “Execute PHP” checkbox and you should be good to go 🙂