Add_post_meta()、update_post_meta()のようなハードPHPコードを使用して、新しいタイトル、投稿コンテンツ、およびカテゴリを更新して投稿に追加する方法を教えてください。
Wp-includes/post.phpにある wp_update_post()
を使うことによって:
// Update post 42
$post = array();
$post['ID'] = 42;
$post['post_category'] = array( ... );
$post['post_content' ] = 'This is the updated content.';
$post['post_title' ] = 'This is the updated title.';
// Update the post into the database
wp_update_post( $post );