Really quick question, been playing with custom post types, which seem really powerful however I could really do with adding a second content block to one..
I'm imagining the output to be something like:
Know what I mean? I can't see a way when constructing the custom type in the functions.php file to create this extra content block to show up in the admin...
Any ideas? surely its a very common thing to need to do? most sites have multiple content areas...
I'm imagining the output to be something like:
Code:
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div>
<?php the_content(); ?>
</div>
<div>
<?php the_content_2(); ?>
</div>
<?php endwhile; ?>
Know what I mean? I can't see a way when constructing the custom type in the functions.php file to create this extra content block to show up in the admin...
Any ideas? surely its a very common thing to need to do? most sites have multiple content areas...