简体   繁体   中英

display birthday on current date from a category in wordpress

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

参数必须是数组

 <?php wp_get_archives(array('type'=>'monthly')); ?> 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM