如何在单击wordpress上更新发布日期时间

时间:2017-04-03 18:02:35

标签: javascript php jquery html wordpress

所以我需要制作更新帖子发布日期的按钮或链接。

我发现了这个,但我不知道怎么称呼它。

{
    "operationType" : "create",
    "record" : 
    {
        "recordType" : "Artist",
        "fields" : 
        {
            "firstName" : {"value" : "Mei"},
            "lastName" : {"value" : "Chen"}
        },
        "recordName" : "Mei Chen"
    }
}

1 个答案:

答案 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);

希望这会有所帮助..