wp_xmlrpc_server::blogger_deletePost()publicWP 1.5.0

Deletes a post.

Метод класса: wp_xmlrpc_server{}

Возвращает

true|IXR_Error. True when post is deleted.

Использование

$wp_xmlrpc_server = new wp_xmlrpc_server();
$wp_xmlrpc_server->blogger_deletePost( $args );
$args(массив) (обязательный)

Method arguments. Note: arguments must be ordered as documented.

  • 0(int)
    Blog ID (unused).

  • 1(int)
    Post ID.

  • 2(строка)
    Username.

  • 3(строка)
    Password.

Список изменений

С версии 1.5.0 Введена.

Код wp_xmlrpc_server::blogger_deletePost() WP 6.4.3

public function blogger_deletePost( $args ) {
	$this->escape( $args );

	$post_id  = (int) $args[1];
	$username = $args[2];
	$password = $args[3];

	$user = $this->login( $username, $password );
	if ( ! $user ) {
		return $this->error;
	}

	/** This action is documented in wp-includes/class-wp-xmlrpc-server.php */
	do_action( 'xmlrpc_call', 'blogger.deletePost', $args, $this );

	$actual_post = get_post( $post_id, ARRAY_A );

	if ( ! $actual_post || 'post' !== $actual_post['post_type'] ) {
		return new IXR_Error( 404, __( 'Sorry, no such post.' ) );
	}

	if ( ! current_user_can( 'delete_post', $post_id ) ) {
		return new IXR_Error( 401, __( 'Sorry, you are not allowed to delete this post.' ) );
	}

	$result = wp_delete_post( $post_id );

	if ( ! $result ) {
		return new IXR_Error( 500, __( 'Sorry, the post could not be deleted.' ) );
	}

	/**
	 * Fires after a post has been successfully deleted via the XML-RPC Blogger API.
	 *
	 * @since 3.4.0
	 *
	 * @param int   $post_id ID of the deleted post.
	 * @param array $args    An array of arguments to delete the post.
	 */
	do_action( 'xmlrpc_call_success_blogger_deletePost', $post_id, $args ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.NotLowercase

	return true;
}