wp_xmlrpc_server::blogger_getPost( array $args ): array|IXR_Error

In this article

Retrieves a post.

Parameters

$argsarrayrequired
Method arguments. Note: arguments must be ordered as documented.
  • int
    Blog ID (unused).
  • 1 int
    Post ID.
  • 2 string
    Username.
  • 3 string
    Password.

Return

array|IXR_Error

Source

public function blogger_getPost( $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;
	}

	$post_data = get_post( $post_id, ARRAY_A );
	if ( ! $post_data ) {
		return new IXR_Error( 404, __( 'Invalid post ID.' ) );
	}

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

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

	$categories = implode( ',', wp_get_post_categories( $post_id ) );

	$content  = '<title>' . wp_unslash( $post_data['post_title'] ) . '</title>';
	$content .= '<category>' . $categories . '</category>';
	$content .= wp_unslash( $post_data['post_content'] );

	$struct = array(
		'userid'      => $post_data['post_author'],
		'dateCreated' => $this->_convert_date( $post_data['post_date'] ),
		'content'     => $content,
		'postid'      => (string) $post_data['ID'],
	);

	return $struct;
}

Hooks

do_action( ‘xmlrpc_call’, string $name, array|string $args, wp_xmlrpc_server $server )

Fires after the XML-RPC user has been authenticated but before the rest of the method logic begins.

Changelog

VersionDescription
1.5.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.