I got a problem with the printAlbumDesc(true); code. i've putted it on the index.php page to show the description next to the album thumbnail and under the album title. but when i change the Description content and press save the text changes in 'Click to add a description...' when i reload the page after that the old text turns up again. What can i do to make this work? i already looked in other themes how they have done it but i can't figure it out.
this is my code:
`
<?php while (next_album()): ?>
<div class="album">
">
<?php printAlbumThumbImage(getAlbumTitle()); ?>
<div class="albumdesc">
<small><?php printAlbumDate("Date Taken: "); ?></small>
"><?php printAlbumTitle(); ?>
<?php printAlbumDesc(true); ?>
<p style="clear: both; ">
</div>
<?php endwhile; ?>
</div>
</div>`