I putting this again here because last thread was already closed, sorry
Hi !
Thank you Ian and Chris , I'am enjoying using Thematic, and it makes me use my brains ;-)
So now that thematic_postmeta_entrydate() has been implemented I'am trying to style by applying a filter but with no success so far (sorry I'm not very good at coding)
This is what I tryied so far :
// Add a custom post meta entry date
function my_postheader_date() {
global $post; ?>
<span class="entry-date">
<span class="month"><?php the_time('M') ?></span>
<span class="day"><?php the_time('d') ?></span>
</span>
<?php add_filter('thematic_postmeta_entrydate','my_postheader_date');
} ?>
but no luck :(
Someone please could take a look and direct me to the solution ?
Thanks a lot