Add the following code to a Genesis Child Theme Blog Template File to Insert content in Genesis blog page.
add_action('genesis_before_loop', 'genesis_standard_loop');
Or create a new Blog template file with the following code.
<?php
/**
* Template Name: Blog
* This file handles blog post listings within a page.
*/
add_action('genesis_before_loop', 'genesis_standard_loop');
genesis();
Share Your Two Cents