Bob,
There may be a plug-in that handles that, but I use a different solution.
I've built several sites that incorporate a "calendar-like" logo that places the date, month, and year into a "small calendar logo" and places that next to the title of the post/page.
The way I've achieved this (I'm sure others have done it differently (and probably better than I) is the following.
I usually place the following html code into the kicker in the ATA--> Edit Posts/Page Info Items--> Kicker sections you want to display the "logo".
Code:
<div class="date">
<div class="date-inside">
<div class="date-month"><?php the_time('M'); ?></div>
<div class="date-day"><?php the_time('d'); ?></div>
<div class="date-year"><?php the_time('Y'); ?></div>
</div>
</div>
In my example... I have the Day, Month and Year being displayed.
For 3.7.1 and up, use
HTML Code:
<div class="date">
<div class="date-inside">
<div class="date-month">%date('M')%</div>
<div class="date-day">%date('d')%</div>
<div class="date-year">%date('Y')%</div>
</div>
</div>
Then in the ATA--> Add HTML/CSS Inserts I add the following
Code:
.date {
background: url('<?php bloginfo('template_url'); ?>/images/cal-redgradient.jpg') repeat-x scroll top left;
display: inline;
float: left;
width:60px;
text-align:center;
color:#fff;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
border:1px solid #7e0101;
margin: 0 10px 0px 0;
}
.date-inside {
border:1px solid #FFEEBF;
padding:2px;
}
.date .date-day {
font-size:22px;
}
In that example the graphic I'm using is the cal-redgradient.jpg, which is 60px wide.
I had to play around with the font sizes and try them with different sizes of graphics. It's not an exact science, but it works.
If you want to see this date "logo" live visit the site I'm using this on. It's a small town Chamber of Commerce site. I'm still working on the development (when I can get good input from the Chamber). Here's the site:
http://www.dufur.org