Hi Guys, I need a little bit of help with something I cannot figure out!
I'm making a web site for an artist, and I have successfully managed to add custom fields to a post and echo them on the single.php page no problems using this code:
<?php $medium = get_post_meta($post->ID, 'Medium', true); ?>
<?php $size = get_post_meta($post->ID, 'Size', true); ?>
<?php $year = get_post_meta($post->ID, 'Year', true); ?>
<p><strong>Medium:</strong> <?php echo $medium; ?><br />
<strong>Size:</strong> <?php echo $size; ?> cms<br />
<strong>Year:</strong> <?php echo $year; ?></p>
However, I'd like the custom fields to be in the "add new post" wysywig part by default, under the so that the artist needn't add these custom fields from scratch, simply just populate them.
Is this possible?