Comment puis-je mettre à jour/ajouter un nouveau titre, un contenu de message et une catégorie à un message avec un code dur PHP similaire à add_post_meta (), update_post_meta ()?
En utilisant wp_update_post()
, trouvé dans wp-includes/post.php:
// 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 );