What I want is to split the content generated by wordpress (images, text, etc) and the content from the template and divide into seperate cells into the table. I tried it with the example below but from what I see the content from wordpress is always put on top and not inserted into the content div. Is there any solution for this?
Code:
<?php /*
Template Name: Page Layout
*/ ?>
<?php
remove_action( 'genesis_post_title','genesis_do_post_title' ); // Removes post title
add_action( 'genesis_post_content', 'child_do_content' );
?>
<?php function child_do_content() { ?>
<table border="1">
<tr>
<td><div id="content"> </div></td>
</tr>
<tr>
<td><h1>This comes from the page.php</h1></td>
</tr>
</table>
<?php }
genesis();
?>