@@ -154,7 +154,7 @@ |
||
154 | 154 | * @param string $avatar The <img/> element of the avatar. |
155 | 155 | * @param mixed $author User ID, email address, user login, comment object, user object, post object |
156 | 156 | * |
157 | - * @return The <img/> element of the avatar. |
|
157 | + * @return string <img/> element of the avatar. |
|
158 | 158 | */ |
159 | 159 | function grofiles_get_avatar( $avatar, $author ) { |
160 | 160 | $is_amp = class_exists( 'Jetpack_AMP_Support' ) && Jetpack_AMP_Support::is_amp_request(); |
@@ -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 |