所以我需要制作更新帖子发布日期的按钮或链接。
我发现了这个,但我不知道怎么称呼它。
{
"operationType" : "create",
"record" :
{
"recordType" : "Artist",
"fields" :
{
"firstName" : {"value" : "Mei"},
"lastName" : {"value" : "Chen"}
},
"recordName" : "Mei Chen"
}
}
答案 0 :(得分:0)
请检查:
$mypost = array();
$mypost['ID'] = 1; // the post ID you want to update
$mypost['post_date'] = $your_date; // uses 'Y-m-d H:i:s' format
wp_update_post($mypost);
希望这会有所帮助..