@@ -28,7 +28,7 @@ class WordPress
28
28
*
29
29
* @see /reference/functions/register_activation_hook/
30
30
* @since 4.0.0
31
- * @version 5.4
31
+ * @version 5.5.1
32
32
* @access protected
33
33
* @param string $file
34
34
* @param callable $method
@@ -44,7 +44,7 @@ protected function registerActivation($file, $method)
44
44
*
45
45
* @see /reference/functions/register_deactivation_hook/
46
46
* @since 4.0.0
47
- * @version 5.4
47
+ * @version 5.5.1
48
48
* @access protected
49
49
* @param string $file
50
50
* @param callable $method
@@ -61,7 +61,7 @@ protected function registerDeactivation($file, $method)
61
61
*
62
62
* @see /reference/functions/register_uninstall_hook/
63
63
* @since 4.0.0
64
- * @version 5.4
64
+ * @version 5.5.1
65
65
* @access protected
66
66
* @param string $file
67
67
* @param callable $method
@@ -77,7 +77,7 @@ protected function registerUninstall($file, $method)
77
77
*
78
78
* @see /reference/functions/add_shortcode/
79
79
* @since 4.0.0
80
- * @version 5.4
80
+ * @version 5.5.1
81
81
* @access protected
82
82
* @param string $tag, Tag name
83
83
* @param callable $callback
@@ -93,7 +93,7 @@ protected function addShortcode($tag, $callback )
93
93
* and filter shortcodes through their hooks
94
94
*
95
95
* @since 4.0.0
96
- * @version 5.4
96
+ * @version 5.5.1
97
97
* @access protected
98
98
* @param inherit
99
99
* @param inherit
@@ -110,7 +110,7 @@ protected function renderShortcode($content, $ignore = false)
110
110
*
111
111
* @see /reference/functions/do_shortcode/
112
112
* @since 4.0.0
113
- * @version 5.4
113
+ * @version 5.5.1
114
114
* @access protected
115
115
* @param string $content
116
116
* @param boolean $ignore, Ignore HTML
@@ -126,7 +126,7 @@ protected function doShortcode($content, $ignore = false)
126
126
*
127
127
* @see /reference/functions/remove_shortcode/
128
128
* @since 4.0.0
129
- * @version 5.4
129
+ * @version 5.5.1
130
130
* @access protected
131
131
* @param string $tag, Tag name
132
132
* @return void
@@ -141,12 +141,12 @@ protected function removeShortcode($tag)
141
141
*
142
142
* @see /reference/functions/shortcode_exists/
143
143
* @since 4.0.0
144
- * @version 5.4
144
+ * @version 5.5.1
145
145
* @access protected
146
146
* @param string $tag, Tag name
147
147
* @return boolean
148
148
*/
149
- protected function shortcodeExist ($ tag )
149
+ protected function shortcodeExists ($ tag )
150
150
{
151
151
return shortcode_exists ($ tag );
152
152
}
@@ -156,13 +156,13 @@ protected function shortcodeExist($tag)
156
156
*
157
157
* @see /reference/functions/has_shortcode/
158
158
* @since 4.0.0
159
- * @version 5.4
159
+ * @version 5.5.1
160
160
* @access protected
161
161
* @param string $content
162
162
* @param string $tag
163
163
* @return boolean
164
164
*/
165
- protected function shortcodeIn ($ content ,$ tag )
165
+ protected function shortcodeIn ($ content , $ tag )
166
166
{
167
167
return has_shortcode ($ content ,$ tag );
168
168
}
@@ -172,7 +172,7 @@ protected function shortcodeIn($content,$tag)
172
172
*
173
173
* @see /reference/functions/add_action/
174
174
* @since 4.0.0
175
- * @version 5.4
175
+ * @version 5.5.1
176
176
* @access protected
177
177
* @param string $hook
178
178
* @param callable $method
@@ -201,7 +201,7 @@ protected function addAction($hook, $method, $priority = 10, $args = 1)
201
201
*
202
202
* @see /reference/functions/remove_action/
203
203
* @since 4.0.0
204
- * @version 5.4
204
+ * @version 5.5.1
205
205
* @access protected
206
206
* @param string $target
207
207
* @param callable $method
@@ -229,7 +229,7 @@ protected function removeAction($target, $method, $priority = 10)
229
229
*
230
230
* @see /reference/functions/do_action/
231
231
* @since 4.0.0
232
- * @version 5.4
232
+ * @version 5.5.1
233
233
* @access protected
234
234
* @param string $tag
235
235
* @param mixed $args
@@ -245,7 +245,7 @@ protected function doAction($tag, $args = null)
245
245
*
246
246
* @see /reference/functions/add_filter/
247
247
* @since 4.0.0
248
- * @version 5.4
248
+ * @version 5.5.1
249
249
* @access protected
250
250
* @param string $hook
251
251
* @param callable $method
@@ -263,7 +263,7 @@ protected function addFilter($hook, $method, $priority = 10, $args = 1)
263
263
*
264
264
* @see /reference/functions/remove_filter/
265
265
* @since 4.0.0
266
- * @version 5.4
266
+ * @version 5.5.1
267
267
* @access protected
268
268
* @param string $hook
269
269
* @param callable $method
@@ -281,7 +281,7 @@ protected function removeFilter($hook, $method, $priority = 10)
281
281
*
282
282
* @see /reference/functions/apply_filters/
283
283
* @since 4.0.0
284
- * @version 5.4
284
+ * @version 5.5.1
285
285
* @access protected
286
286
* @param string $hook
287
287
* @param mixed $value
@@ -298,7 +298,7 @@ protected function applyFilter($hook, $value, $args = null)
298
298
*
299
299
* @see /reference/functions/has_filter/
300
300
* @since 4.0.0
301
- * @version 5.4
301
+ * @version 5.5.1
302
302
* @access protected
303
303
* @param string $tag
304
304
* @param callable $method
@@ -315,7 +315,7 @@ protected function hasFilter($tag, $method = false)
315
315
* @see /reference/functions/wp_register_style/
316
316
* @see /reference/functions/wp_enqueue_style/
317
317
* @since 4.0.0
318
- * @version 5.4
318
+ * @version 5.5.1
319
319
* @access protected
320
320
* @param string $id
321
321
* @param string $path
@@ -339,7 +339,7 @@ protected function addCSS($id, $path, $deps = [], $version = false, $media = 'al
339
339
* @see /reference/functions/wp_register_script/
340
340
* @see /reference/functions/wp_enqueue_script/
341
341
* @since 4.0.0
342
- * @version 5.4
342
+ * @version 5.5.1
343
343
* @access protected
344
344
* @param string $id
345
345
* @param string $path
@@ -363,7 +363,7 @@ protected function addJS($id, $path, $deps = [], $version = false, $footer = fal
363
363
* @see /reference/functions/wp_register_script/
364
364
* @see /reference/functions/wp_enqueue_script/
365
365
* @since 4.0.0
366
- * @version 5.4
366
+ * @version 5.5.1
367
367
* @access protected
368
368
* @param string $id
369
369
* @param string $list
@@ -383,7 +383,7 @@ protected function isJS($id, $list = 'enqueued')
383
383
* @see /reference/functions/wp_dequeue_style/
384
384
* @see /reference/functions/wp_deregister_style/
385
385
* @since 4.0.0
386
- * @version 5.4
386
+ * @version 5.5.1
387
387
* @access protected
388
388
* @param string $id
389
389
* @return void
@@ -400,7 +400,7 @@ protected function removeCSS($id)
400
400
* @see /reference/functions/wp_dequeue_script/
401
401
* @see /reference/functions/wp_deregister_script/
402
402
* @since 4.0.0
403
- * @version 5.4
403
+ * @version 5.5.1
404
404
* @access protected
405
405
* @param string $id
406
406
* @return void
@@ -417,7 +417,7 @@ protected function removeJS($id)
417
417
*
418
418
* @see /reference/functions/wp_deregister_script/
419
419
* @since 4.0.0
420
- * @version 5.4
420
+ * @version 5.5.1
421
421
* @access protected
422
422
* @param string $id
423
423
* @param object $object
@@ -434,7 +434,7 @@ protected function localizeJS($id, $object, $content = [])
434
434
*
435
435
* @see /reference/functions/register_setting/
436
436
* @since 4.0.0
437
- * @version 5.4
437
+ * @version 5.5.1
438
438
* @access protected
439
439
* @param string $group
440
440
* @param string $option
@@ -451,7 +451,7 @@ protected function registerOption($group, $option, $args = [])
451
451
*
452
452
* @see /reference/functions/register_setting/
453
453
* @since 4.0.0
454
- * @version 5.4
454
+ * @version 5.5.1
455
455
* @access protected
456
456
* @param string $option
457
457
* @param mixed $value
@@ -467,7 +467,7 @@ protected function addOption($option, $value)
467
467
*
468
468
* @see /reference/functions/get_option/
469
469
* @since 4.0.0
470
- * @version 5.4
470
+ * @version 5.5.1
471
471
* @access protected
472
472
* @param string $option
473
473
* @param string $default
0 commit comments