Reputation: 3520
I want to display posts from a category 'Birthday' from current date.
How I can show all post from a day and month. But it should not require any Year parameter.
I have tried it with
<?php wp_get_archives('type=monthly'); ?>
but it take year also.
Please help me, i want to display today's birthday
Upvotes: 0
Views: 304
Reputation: 86476
Argument must be an array
<?php wp_get_archives(array('type'=>'monthly')); ?>
Upvotes: 1