diff --git src/wp-admin/includes/misc.php src/wp-admin/includes/misc.php
index 3680f8e..6e39592 100644
|
|
function got_mod_rewrite() { |
22 | 22 | * This filter was previously used to force URL rewriting for other servers, |
23 | 23 | * like nginx. Use the got_url_rewrite filter in got_url_rewrite() instead. |
24 | 24 | * |
| 25 | * @since 2.5.0 |
| 26 | * |
25 | 27 | * @see got_url_rewrite() |
26 | 28 | * |
27 | | * @since 2.5.0 |
28 | 29 | * @param bool $got_rewrite Whether Apache and mod_rewrite are present. |
29 | 30 | */ |
30 | 31 | return apply_filters( 'got_rewrite', $got_rewrite ); |
… |
… |
function got_url_rewrite() { |
46 | 47 | * Filter whether URL rewriting is available. |
47 | 48 | * |
48 | 49 | * @since 3.7.0 |
| 50 | * |
49 | 51 | * @param bool $got_url_rewrite Whether URL rewriting is available. |
50 | 52 | */ |
51 | 53 | return apply_filters( 'got_url_rewrite', $got_url_rewrite ); |
… |
… |
function wp_doc_link_parse( $content ) { |
336 | 338 | sort( $functions ); |
337 | 339 | |
338 | 340 | /** |
339 | | * Filter the list of functions/classes to be ignored from the documentation lookup. |
| 341 | * Filter the list of functions and classes to be ignored from the documentation lookup. |
340 | 342 | * |
341 | 343 | * @since 2.8.0 |
342 | 344 | * |
343 | | * @param array $ignore_functions Functions/Classes to be ignored. |
| 345 | * @param array $ignore_functions Functions and classes to be ignored. |
344 | 346 | */ |
345 | 347 | $ignore_functions = apply_filters( 'documentation_ignore_functions', $ignore_functions ); |
346 | 348 | |