Hello, so basically I want to manage a simple static website. My template is pretty much <?php get_header ?> and <?php get_footer ?> with the loop in between those. My goal is to be able to create pages and posting the HTML code, effectively between the header and footer directly. But whenever I post I get this of course:
"Test
October 1st, 2012 by admin
testest
Posted in"
I don't know enough PHP to modify the loop code itself which I tried doing. I also tried making a functions.php that had this:
<?php
add_action('genesis_before', 'child_conditional_actions');
function child_conditional_actions() {
if ( is_page() )
remove_action('genesis_post_title', 'genesis_do_post_title');
}
?>
But it did nothing. Does anyone have any advice?
This is the full loop code I used in case anyone's curious:
http://pastie.org/4894413