write_post()
Calls wp_write_post() and handles the errors.
Хуков нет.
Возвращает
int|null. Post ID on success, void on failure.
Использование
write_post();
Список изменений
| С версии 2.0.0 | Введена. |
Код write_post() write post WP 6.9
function write_post() {
$result = wp_write_post();
if ( is_wp_error( $result ) ) {
wp_die( $result->get_error_message() );
} else {
return $result;
}
}