@@ -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 |
@@ -557,7 +557,7 @@ |
||
557 | 557 | /** |
558 | 558 | * The default args for rendering a subscription form. |
559 | 559 | * |
560 | - * @return array |
|
560 | + * @return string |
|
561 | 561 | */ |
562 | 562 | static function defaults() { |
563 | 563 | $defaults = array( |
@@ -55,7 +55,7 @@ |
||
55 | 55 | * @access private |
56 | 56 | * @param string $key |
57 | 57 | * @param array $files |
58 | - * @return void |
|
58 | + * @return WP_Error|null |
|
59 | 59 | */ |
60 | 60 | function _jetpack_require_compat_file( $key, $files ) { |
61 | 61 | if ( ! is_string( $key ) ) { |
@@ -138,6 +138,7 @@ |
||
138 | 138 | /** |
139 | 139 | * Returns a class value, `output-the-content` by default. |
140 | 140 | * Used for themes with a 'Mixed' Blog Display so we can tell which output is by default. |
141 | + * @param string $new_class |
|
141 | 142 | */ |
142 | 143 | function jetpack_the_content_customizer_class( $new_class = null ) { |
143 | 144 | static $class; |
@@ -699,7 +699,7 @@ |
||
699 | 699 | * handlers should be copied when the theme context is loaded by the REST API. |
700 | 700 | * |
701 | 701 | * @param array $copy_dirs Copy paths with actions to be copied |
702 | - * @return array Copy paths with featured content plugin |
|
702 | + * @return string[] Copy paths with featured content plugin |
|
703 | 703 | */ |
704 | 704 | function wpcom_rest_api_featured_content_copy_plugin_actions( $copy_dirs ) { |
705 | 705 | $copy_dirs[] = __FILE__; |
@@ -40,7 +40,6 @@ |
||
40 | 40 | /** |
41 | 41 | * Prevent IS from being activated if theme doesn't support it |
42 | 42 | * |
43 | - * @param bool $can_activate |
|
44 | 43 | * @filter jetpack_can_activate_infinite-scroll |
45 | 44 | * @return bool |
46 | 45 | */ |
@@ -29,6 +29,7 @@ |
||
29 | 29 | /** |
30 | 30 | * Adds a wrapper to videos and enqueue script |
31 | 31 | * |
32 | + * @param string $html |
|
32 | 33 | * @return string |
33 | 34 | */ |
34 | 35 | function jetpack_responsive_videos_embed_html( $html ) { |
@@ -258,7 +258,7 @@ |
||
258 | 258 | /** |
259 | 259 | * Reset the site logo if the current logo is deleted in the media manager. |
260 | 260 | * |
261 | - * @param int $site_id |
|
261 | + * @param int $post_id |
|
262 | 262 | * @uses Site_Logo::remove_site_logo() |
263 | 263 | */ |
264 | 264 | public function reset_on_attachment_delete( $post_id ) { |
@@ -165,6 +165,7 @@ |
||
165 | 165 | * Sanitize the string of classes used for header text. |
166 | 166 | * Limit to A-Z,a-z,0-9,(space),(comma),_,- |
167 | 167 | * |
168 | + * @param string $classes |
|
168 | 169 | * @return string Sanitized string of CSS classes. |
169 | 170 | */ |
170 | 171 | function jetpack_sanitize_header_text_classes( $classes ) { |