开发者

display birthday on current date from a category in wordpress

开发者 https://www.devze.com 2023-03-04 09:14 出处:网络
I want to display posts from a category \'Birthday\' from current date. How I can show all post fro开发者_开发技巧m a day and month. But it should not require any Year parameter.

I want to display posts from a category 'Birthday' from current date.

How I can show all post fro开发者_开发技巧m 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


Argument must be an array

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

精彩评论

暂无评论...
验证码 换一张
取 消