I want to have a list in the sidebar with posts that have today's date as a tag.
This is what I'm trying but it won't accept the date function as a tag.
<?php query_posts('showposts=10');?>
<?php $posts = get_posts('tag=<?php the_time('jmY') ?>&numberposts=10&offset=0');
foreach ($posts as $post) : start_wp(); ?>
<a href="<?php echo get_permalink() ?>"><?php $key="alttitle"; echo get_post_meta($post->ID, $key, true); ?></a>
<?php endforeach; ?>
Any help much appreciated.