@@ -297,7 +297,7 @@ |
||
297 | 297 | * Returns a download URL, dealing with Google's long file names. |
298 | 298 | * |
299 | 299 | * @param array $guid Media information. |
300 | - * @return string|\WP_Error |
|
300 | + * @return string |
|
301 | 301 | */ |
302 | 302 | public function get_download_url( $guid ) { |
303 | 303 | $this->tmp_name = $guid['name']; |
@@ -310,7 +310,7 @@ |
||
310 | 310 | /** |
311 | 311 | * Get the current user id |
312 | 312 | * |
313 | - * @return int |
|
313 | + * @return string |
|
314 | 314 | */ |
315 | 315 | public function get_user_id() { |
316 | 316 | if ( is_user_logged_in() ) { |
@@ -514,7 +514,7 @@ |
||
514 | 514 | * Send a synchronous XML-RPC subscribe to blog posts or subscribe to post comments request. |
515 | 515 | * |
516 | 516 | * @param string $email |
517 | - * @param array $post_ids (optional) defaults to 0 for blog posts only: array of post IDs to subscribe to blog's posts |
|
517 | + * @param integer $post_ids (optional) defaults to 0 for blog posts only: array of post IDs to subscribe to blog's posts |
|
518 | 518 | * @param bool $async (optional) Should the subscription be performed asynchronously? Defaults to true. |
519 | 519 | * |
520 | 520 | * @return true|WP_Error true on success |