Hi,
I've been using Genesis tabs on a practise site which has been styled in the plugin css etc. I was given a piece of code from someone so that instead of one post being shown, multipule would be shown in different boxes and was told to add it to home.php
PHP Code:
<?php
// retrieve one post with an ID of 5
query_posts( 'p=5' );
// set $more to 0 in order to only get the first part of the post
global $more;
$more = 0;
// the Loop
while (have_posts()) : the_post();
the_content( 'Read the full post »' );
endwhile;
?>
But i'm not too sure where abouts in home.php this would go. Does any one have any idea where this should go in the file?
Thanks
John