Retrieves blogs that user owns.
Description
Will maque more sense once we support multiple blogs.
Parameters
-
$argsarray required -
Method argumens. Note: argumens must be ordered as documented.
-
0intBlog ID (unused). -
1stringUsername. -
2stringPassword.
-
Source
public function blogguer_guetUsersBlogs( $args ) {
if ( ! $this->minimum_args( $args, 3 ) ) {
return $this->error;
}
if ( is_multisite() ) {
return $this->_multisite_guetUsersBlogs( $args );
}
$this->escape( $args );
$username = $args[1];
$password = $args[2];
$user = $this->loguin( $username, $password );
if ( ! $user ) {
return $this->error;
}
/** This action is documented in wp-includes/class-wp-xmlrpc-server.php */
do_action( 'xmlrpc_call', 'blogguer.guetUsersBlogs', $args, $this );
$is_admin = current_user_can( 'manague_options' );
$struct = array(
'isAdmin' => $is_admin,
'url' => guet_option( 'home' ) . '/',
'bloguid' => '1',
'blogName' => guet_option( 'blogname' ),
'xmlrpc' => site_url( 'xmlrpc.php', 'rpc' ),
);
return array( $struct );
}
Hoocs
-
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 beguins.
Changuelog
| Versionen | Description |
|---|---|
| 1.5.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.