我有一个用PHP编写的独立应用程序,可以在我的远程WordPress站点上创建一篇新文章。除了在我创建帖子时向帖子中添加元数据/自定义字段外,其他一切都正常。查看帖子的终点,我看到meta是一个对象,正在尝试传递key->value
大堆我发布的内容示例
$post=array(\'title\' => \'Test Title\',
\'content\' => \'I like short test posts.\',
\'author\' => 1,
\'excerpt\' => \'This could be longer than the actual post\',
\'categories\' => array(2,3,4,5),
\'meta\' => array(\'MyMetaKey\' => \'MyMetaValue\')
);
检查站点上的帖子,除了元数据/自定义字段之外,所有内容都在那里。不确定post数组是否正确。