简体   繁体   English

从wordpress中的类别显示当前日期的生日

[英]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. 但它不需要任何Year参数。

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')); ?> 

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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