如何随机化WordPress自定义帖子类型的发布日期

时间:2018-09-20 作者:Thilina

我尝试了以下答案来随机化发布日期:Update existing post dates to random dates

它工作了,但我需要随机化自定义帖子类型。我该怎么做?示例:post\\u type=投资组合

非常感谢。

1 个回复
SO网友:kero

可以指定参数post_type 对于函数get_posts() (参见all available arguments 此处)。所以这条线

$posts = get_posts( array( \'numberposts\' => -1, \'post_status\' => \'any\' ) );
将成为这条线

$posts = get_posts( array( \'numberposts\' => -1, \'post_status\' => \'any\', \'post_type\' => \'portfolio\' ) );

结束

相关推荐

How to Convert Date to Thai

我想用的泰语文本是:อาทิตย์ 03มกราคม 2016年至อาทิตย์ ๐๓ มกราคม ๒๐๑๖我认为什么语言不重要,但在这种情况下,它是泰语。我的职能是:$strdate = get_thai_date(); print_r($strdate[\"number\"]); 输出为:Array ( [0] => ๐ [1] => ๑ [2] => ๒ [3] => ๓&#