wp_query on page template not working (Genesis framework)

Couple of issues are seen here –

  1. You have hooked a function in a template file whereas such code should go in functions.php instead or you can directly put the code of this function in the template.
  2. You does not seem to be getting value of $post inside this function.
  3. Both the return statements should be removed and just echo $html; should be placed just after the wp_reset_postdata() in your current code.