How to insert Ads after header in Genesis WordPress Theme

Here is a simple way to add Ad code after header in Genesis wordpress theme. You also don’t need the additional simple hooks plugin for this. To insert ads after the header menu in Genesis just copy and paste this code in you functions.php. Place your ad code in the space provided and save it.

function ad_menu() {

?>

<!—Place your Ad Code here –>

<?php

}

add_action(‘genesis_after_header’, ‘ad_menu’);

After saving this to your functions.php you will see the ads after header in the genesis theme or its child theme.


Leave a Comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.