IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
250 | 250 | * @since 2.5.0 |
251 | 251 | * |
252 | 252 | * @param string $taxonomy Taxonomy to retrieve terms from. |
253 | | * @param int $default Unused. |
| 253 | * @param int $unused Unused. |
254 | 254 | * @param int $number Number of terms to retrieve. Defaults to 10. |
255 | 255 | * @param bool $echo Optionally output the list as well. Defaults to true. |
256 | 256 | * @return array List of popular term IDs. |
257 | 257 | */ |
258 | | function wp_popular_terms_checklist( $taxonomy, $default = 0, $number = 10, $echo = true ) { |
| 258 | function wp_popular_terms_checklist( $taxonomy, $unused = 0, $number = 10, $echo = true ) { |
259 | 259 | $post = get_post(); |
260 | 260 | |
261 | 261 | if ( $post && $post->ID ) |
… |
… |
|
1527 | 1527 | * |
1528 | 1528 | * @since 2.7.0 |
1529 | 1529 | * @param string $title Title of the Iframe page. |
1530 | | * @param bool $limit_styles Limit styles to colour-related styles only (unless others are enqueued). |
| 1530 | * @param bool $unused Unused. |
1531 | 1531 | * |
1532 | 1532 | */ |
1533 | | function iframe_header( $title = '', $limit_styles = false ) { |
| 1533 | function iframe_header( $title = '', $unused = false ) { |
1534 | 1534 | show_admin_bar( false ); |
1535 | | global $hook_suffix, $current_user, $admin_body_class, $wp_locale; |
| 1535 | global $hook_suffix, $admin_body_class, $wp_locale; |
1536 | 1536 | $admin_body_class = preg_replace('/[^a-z0-9_-]+/i', '-', $hook_suffix); |
1537 | 1537 | |
1538 | 1538 | $current_screen = get_current_screen(); |