Make WordPress Core

Ticket #43254: 43254.2.diff

File 43254.2.diff, 26.2 KB (added by janalwin, 7 years ago)
  • src/wp-admin/includes/plugin.php

     
    463463 *
    464464 * Plugins in the mu-plugins/ folder can't be "activated," so this function will
    465465 * return false for those plugins.
    466  *
     466 *
     467 * For more information on this and similar theme functions, check out
     468 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     469 * Conditional Tags} article in the Theme Developer Handbook.
     470 *
    467471 * @since 2.5.0
    468472 *
    469473 * @param string $plugin Path to the main plugin file from plugins directory.
     
    477481 * Check whether the plugin is inactive.
    478482 *
    479483 * Reverse of is_plugin_active(). Used as a callback.
    480  *
     484 *
     485 * For more information on this and similar theme functions, check out
     486 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     487 * Conditional Tags} article in the Theme Developer Handbook.
     488 *
    481489 * @since 3.1.0
    482490 * @see is_plugin_active()
    483491 *
     
    495503 *
    496504 * Plugins in the mu-plugins/ folder can't be "activated," so this function will
    497505 * return false for those plugins.
    498  *
     506 *
     507 * For more information on this and similar theme functions, check out
     508 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     509 * Conditional Tags} article in the Theme Developer Handbook.
     510 *
    499511 * @since 3.0.0
    500512 *
    501513 * @param string $plugin Path to the main plugin file from plugins directory.
  • src/wp-includes/admin-bar.php

     
    11181118
    11191119/**
    11201120 * Determine whether the admin bar should be showing.
    1121  *
     1121 *
     1122 * For more information on this and similar theme functions, check out
     1123 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     1124 * Conditional Tags} article in the Theme Developer Handbook.
     1125 *
    11221126 * @since 3.1.0
    11231127 *
    11241128 * @global bool   $show_admin_bar
  • src/wp-includes/author-template.php

     
    524524 * Does this site have more than one author
    525525 *
    526526 * Checks to see if more than one author has published posts.
    527  *
     527 *
     528 * For more information on this and similar theme functions, check out
     529 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     530 * Conditional Tags} article in the Theme Developer Handbook.
     531 *
    528532 * @since 3.2.0
    529533 *
    530534 * @global wpdb $wpdb WordPress database abstraction object.
  • src/wp-includes/category-template.php

     
    231231 * Prior to v2.7, only one category could be compared: in_category( $single_category ).
    232232 * Prior to v2.7, this function could only be used in the WordPress Loop.
    233233 * As of 2.7, the function can be used anywhere if it is provided a post ID or post object.
     234 *
     235 * For more information on this and similar theme functions, check out
     236 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     237 * Conditional Tags} article in the Theme Developer Handbook.
    234238 *
    235239 * @since 1.2.0
    236240 *
     
    14151419 * Prior to v2.7 of WordPress, tags given as integers would also be checked against the post's tags' names and slugs (in addition to term_ids)
    14161420 * Prior to v2.7, this function could only be used in the WordPress Loop.
    14171421 * As of 2.7, the function can be used anywhere if it is provided a post ID or post object.
     1422 *
     1423 * For more information on this and similar theme functions, check out
     1424 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     1425 * Conditional Tags} article in the Theme Developer Handbook.
    14181426 *
    14191427 * @since 2.6.0
    14201428 *
  • src/wp-includes/comment-template.php

     
    12021202
    12031203/**
    12041204 * Whether the current post is open for comments.
    1205  *
     1205 *
     1206 * For more information on this and similar theme functions, check out
     1207 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     1208 * Conditional Tags} article in the Theme Developer Handbook.
     1209 *
    12061210 * @since 1.5.0
    12071211 *
    12081212 * @param int|WP_Post $post_id Post ID or WP_Post object. Default current post.
     
    12281232
    12291233/**
    12301234 * Whether the current post is open for pings.
     1235 *
     1236 * For more information on this and similar theme functions, check out
     1237 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     1238 * Conditional Tags} article in the Theme Developer Handbook.
    12311239 *
    12321240 * @since 1.5.0
    12331241 *
  • src/wp-includes/deprecated.php

     
    25112511 * Is the current admin page generated by a plugin?
    25122512 *
    25132513 * Use global $plugin_page and/or get_plugin_page_hookname() hooks.
    2514  *
     2514 *
     2515 * For more information on this and similar theme functions, check out
     2516 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     2517 * Conditional Tags} article in the Theme Developer Handbook.
     2518 *
    25152519 * @since 1.5.0
    25162520 * @deprecated 3.1.0
    25172521 *
     
    37143718
    37153719/**
    37163720 * Whether the current URL is within the comments popup window.
    3717  *
     3721 *
     3722 * For more information on this and similar theme functions, check out
     3723 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     3724 * Conditional Tags} article in the Theme Developer Handbook.
     3725 *
    37183726 * @since 1.5.0
    37193727 * @deprecated 4.5.0
    37203728 *
  • src/wp-includes/functions.php

     
    673673/**
    674674 * Whether the publish date of the current post in the loop is different from the
    675675 * publish date of the previous post in the loop.
    676  *
     676 *
     677 * For more information on this and similar theme functions, check out
     678 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     679 * Conditional Tags} article in the Theme Developer Handbook.
     680 *
    677681 * @since 0.71
    678682 *
    679683 * @global string $currentday  The day of the current post in the loop.
     
    13891393 * cache, and the database goes away, then you might have problems.
    13901394 *
    13911395 * Checks for the 'siteurl' option for whether WordPress is installed.
     1396 *
     1397 * For more information on this and similar theme functions, check out
     1398 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     1399 * Conditional Tags} article in the Theme Developer Handbook.
    13921400 *
    13931401 * @since 2.1.0
    13941402 *
  • src/wp-includes/functions.wp-scripts.php

     
    320320
    321321/**
    322322 * Check whether a script has been added to the queue.
    323  *
     323 *
     324 * For more information on this and similar theme functions, check out
     325 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     326 * Conditional Tags} article in the Theme Developer Handbook.
     327 * 
    324328 * @since 2.8.0
    325329 * @since 3.5.0 'enqueued' added as an alias of the 'queue' list.
    326330 *
  • src/wp-includes/l10n.php

     
    12881288
    12891289/**
    12901290 * Checks if current locale is RTL.
     1291 *
     1292 * For more information on this and similar theme functions, check out
     1293 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     1294 * Conditional Tags} article in the Theme Developer Handbook.
    12911295 *
    12921296 * @since 3.0.0
    12931297 *
  • src/wp-includes/load.php

     
    762762 * Does not check if the user is an administrator; current_user_can()
    763763 * for checking roles and capabilities.
    764764 *
     765 * For more information on this and similar theme functions, check out
     766 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     767 * Conditional Tags} article in the Theme Developer Handbook.
     768 *
    765769 * @since 1.5.1
    766770 *
    767771 * @global WP_Screen $current_screen
  • src/wp-includes/pluggable.php

     
    983983        /**
    984984         * Checks if the current visitor is a logged in user.
    985985         *
     986         * For more information on this and similar theme functions, check out
     987         * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     988         * Conditional Tags} article in the Theme Developer Handbook.
     989         *
    986990         * @since 2.0.0
    987991         *
    988992         * @return bool True if user is logged in, false if not logged in.
  • src/wp-includes/post-template.php

     
    413413
    414414/**
    415415 * Whether the post has a custom excerpt.
     416 *
     417 * For more information on this and similar theme functions, check out
     418 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     419 * Conditional Tags} article in the Theme Developer Handbook.
    416420 *
    417421 * @since 2.3.0
    418422 *
     
    16911695 * This template tag allows you to determine if you are in a page template.
    16921696 * You can optionally provide a template name or array of template names
    16931697 * and then the check will be specific to that template.
    1694  *
     1698 *
     1699 * For more information on this and similar theme functions, check out
     1700 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     1701 * Conditional Tags} article in the Theme Developer Handbook.
     1702 *
    16951703 * @since 2.5.0
    16961704 * @since 4.2.0 The `$template` parameter was changed to also accept an array of page templates.
    16971705 * @since 4.7.0 Now works with any post type, not just pages.
  • src/wp-includes/post-thumbnail-template.php

     
    1111
    1212/**
    1313 * Check if post has an image attached.
     14 *
     15 * For more information on this and similar theme functions, check out
     16 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     17 * Conditional Tags} article in the Theme Developer Handbook.
    1418 *
    1519 * @since 2.9.0
    1620 * @since 4.4.0 `$post` can be a post ID or WP_Post object.
  • src/wp-includes/post.php

     
    972972
    973973/**
    974974 * Check if a post type is registered.
     975 *
     976 * For more information on this and similar theme functions, check out
     977 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     978 * Conditional Tags} article in the Theme Developer Handbook.
    975979 *
    976980 * @since 3.0.0
    977981 *
     
    19851989 *
    19861990 * Sticky posts should remain at the top of The Loop. If the post ID is not
    19871991 * given, then The Loop ID for the current post will be used.
    1988  *
     1992 *
     1993 * For more information on this and similar theme functions, check out
     1994 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     1995 * Conditional Tags} article in the Theme Developer Handbook.
     1996 *
    19891997 * @since 2.7.0
    19901998 *
    19911999 * @param int $post_id Optional. Post ID. Default is ID of the global $post.
     
    50465054
    50475055/**
    50485056 * Check if the attachment URI is local one and is really an attachment.
    5049  *
     5057 *
     5058 * For more information on this and similar theme functions, check out
     5059 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     5060 * Conditional Tags} article in the Theme Developer Handbook.
     5061 *
    50505062 * @since 2.0.0
    50515063 *
    50525064 * @param string $url URL to check
     
    55215533
    55225534/**
    55235535 * Checks if the attachment is an image.
     5536 *
     5537 * For more information on this and similar theme functions, check out
     5538 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     5539 * Conditional Tags} article in the Theme Developer Handbook.
    55245540 *
    55255541 * @since 2.1.0
    55265542 * @since 4.2.0 Modified into wrapper for wp_attachment_is() and
  • src/wp-includes/query.php

     
    139139 * Is the query for an existing archive page?
    140140 *
    141141 * Month, Year, Category, Author, Post Type archive...
    142  *
     142 *
     143 * For more information on this and similar theme functions, check out
     144 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     145 * Conditional Tags} article in the Theme Developer Handbook.
     146 *
    143147 * @since 1.5.0
    144148 *
    145149 * @global WP_Query $wp_query Global WP_Query instance.
     
    159163
    160164/**
    161165 * Is the query for an existing post type archive page?
    162  *
     166 *
     167 * For more information on this and similar theme functions, check out
     168 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     169 * Conditional Tags} article in the Theme Developer Handbook.
     170 *
    163171 * @since 3.1.0
    164172 *
    165173 * @global WP_Query $wp_query Global WP_Query instance.
     
    180188
    181189/**
    182190 * Is the query for an existing attachment page?
    183  *
     191 *
     192 * For more information on this and similar theme functions, check out
     193 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     194 * Conditional Tags} article in the Theme Developer Handbook.
     195 *
    184196 * @since 2.0.0
    185197 *
    186198 * @global WP_Query $wp_query Global WP_Query instance.
     
    204216 *
    205217 * If the $author parameter is specified, this function will additionally
    206218 * check if the query is for one of the authors specified.
    207  *
     219 *
     220 * For more information on this and similar theme functions, check out
     221 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     222 * Conditional Tags} article in the Theme Developer Handbook.
     223 *
    208224 * @since 1.5.0
    209225 *
    210226 * @global WP_Query $wp_query Global WP_Query instance.
     
    228244 *
    229245 * If the $category parameter is specified, this function will additionally
    230246 * check if the query is for one of the categories specified.
    231  *
     247 *
     248 * For more information on this and similar theme functions, check out
     249 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     250 * Conditional Tags} article in the Theme Developer Handbook.
     251 *
    232252 * @since 1.5.0
    233253 *
    234254 * @global WP_Query $wp_query Global WP_Query instance.
     
    252272 *
    253273 * If the $tag parameter is specified, this function will additionally
    254274 * check if the query is for one of the tags specified.
     275 *
     276 * For more information on this and similar theme functions, check out
     277 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     278 * Conditional Tags} article in the Theme Developer Handbook.
    255279 *
    256280 * @since 2.3.0
    257281 *
     
    280304 * If the $term parameter is specified in addition to the $taxonomy parameter,
    281305 * this function will additionally check if the query is for one of the terms
    282306 * specified.
     307 *
     308 * For more information on this and similar theme functions, check out
     309 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     310 * Conditional Tags} article in the Theme Developer Handbook.
    283311 *
    284312 * @since 2.5.0
    285313 *
     
    302330
    303331/**
    304332 * Is the query for an existing date archive?
    305  *
     333 *
     334 * For more information on this and similar theme functions, check out
     335 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     336 * Conditional Tags} article in the Theme Developer Handbook.
     337 *
    306338 * @since 1.5.0
    307339 *
    308340 * @global WP_Query $wp_query Global WP_Query instance.
     
    324356 * Is the query for an existing day archive?
    325357 *
    326358 * A conditional check to test whether the page is a date-based archive page displaying posts for the current day.
    327  *
     359 *
     360 * For more information on this and similar theme functions, check out
     361 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     362 * Conditional Tags} article in the Theme Developer Handbook.
     363 *
    328364 * @since 1.5.0
    329365 *
    330366 * @global WP_Query $wp_query Global WP_Query instance.
     
    344380
    345381/**
    346382 * Is the query for a feed?
    347  *
     383 *
     384 * For more information on this and similar theme functions, check out
     385 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     386 * Conditional Tags} article in the Theme Developer Handbook.
     387 *
    348388 * @since 1.5.0
    349389 *
    350390 * @global WP_Query $wp_query Global WP_Query instance.
     
    394434 * true when viewing that page.
    395435 *
    396436 * Otherwise the same as @see is_home()
    397  *
     437 *
     438 * For more information on this and similar theme functions, check out
     439 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     440 * Conditional Tags} article in the Theme Developer Handbook.
     441 *
    398442 * @since 2.5.0
    399443 *
    400444 * @global WP_Query $wp_query Global WP_Query instance.
     
    422466 *
    423467 * If a static page is set for the front page of the site, this function will return true only
    424468 * on the page you set as the "Posts page".
    425  *
     469 *
     470 * For more information on this and similar theme functions, check out
     471 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     472 * Conditional Tags} article in the Theme Developer Handbook.
     473 *
    426474 * @since 1.5.0
    427475 *
    428476 * @see is_front_page()
     
    443491
    444492/**
    445493 * Is the query for an existing month archive?
    446  *
     494 *
     495 * For more information on this and similar theme functions, check out
     496 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     497 * Conditional Tags} article in the Theme Developer Handbook.
     498 *
    447499 * @since 1.5.0
    448500 *
    449501 * @global WP_Query $wp_query Global WP_Query instance.
     
    466518 *
    467519 * If the $page parameter is specified, this function will additionally
    468520 * check if the query is for one of the pages specified.
    469  *
     521 *
     522 * For more information on this and similar theme functions, check out
     523 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     524 * Conditional Tags} article in the Theme Developer Handbook.
     525 *
    470526 * @see is_single()
    471527 * @see is_singular()
    472528 *
     
    490546
    491547/**
    492548 * Is the query for paged result and not for the first page?
    493  *
     549 *
     550 * For more information on this and similar theme functions, check out
     551 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     552 * Conditional Tags} article in the Theme Developer Handbook.
     553 *
    494554 * @since 1.5.0
    495555 *
    496556 * @global WP_Query $wp_query Global WP_Query instance.
     
    510570
    511571/**
    512572 * Is the query for a post or page preview?
    513  *
     573 *
     574 * For more information on this and similar theme functions, check out
     575 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     576 * Conditional Tags} article in the Theme Developer Handbook.
     577 *
    514578 * @since 2.0.0
    515579 *
    516580 * @global WP_Query $wp_query Global WP_Query instance.
     
    550614
    551615/**
    552616 * Is the query for a search?
    553  *
     617 *
     618 * For more information on this and similar theme functions, check out
     619 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     620 * Conditional Tags} article in the Theme Developer Handbook.
     621 *
    554622 * @since 1.5.0
    555623 *
    556624 * @global WP_Query $wp_query Global WP_Query instance.
     
    575643 *
    576644 * If the $post parameter is specified, this function will additionally
    577645 * check if the query is for one of the Posts specified.
    578  *
     646 *
     647 * For more information on this and similar theme functions, check out
     648 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     649 * Conditional Tags} article in the Theme Developer Handbook.
     650 *
    579651 * @see is_page()
    580652 * @see is_singular()
    581653 *
     
    603675 *
    604676 * If the $post_types parameter is specified, this function will additionally
    605677 * check if the query is for one of the Posts Types specified.
    606  *
     678 *
     679 * For more information on this and similar theme functions, check out
     680 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     681 * Conditional Tags} article in the Theme Developer Handbook.
     682 *
    607683 * @see is_page()
    608684 * @see is_single()
    609685 *
     
    627703
    628704/**
    629705 * Is the query for a specific time?
     706 *
     707 * For more information on this and similar theme functions, check out
     708 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     709 * Conditional Tags} article in the Theme Developer Handbook.
    630710 *
    631711 * @since 1.5.0
    632712 *
     
    647727
    648728/**
    649729 * Is the query for a trackback endpoint call?
     730 *
     731 * For more information on this and similar theme functions, check out
     732 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     733 * Conditional Tags} article in the Theme Developer Handbook.
    650734 *
    651735 * @since 1.5.0
    652736 *
     
    667751
    668752/**
    669753 * Is the query for an existing year archive?
     754 *
     755 * For more information on this and similar theme functions, check out
     756 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     757 * Conditional Tags} article in the Theme Developer Handbook.
    670758 *
    671759 * @since 1.5.0
    672760 *
     
    687775
    688776/**
    689777 * Is the query a 404 (returns no results)?
    690  *
     778 *
     779 * For more information on this and similar theme functions, check out
     780 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     781 * Conditional Tags} article in the Theme Developer Handbook.
     782 *
    691783 * @since 1.5.0
    692784 *
    693785 * @global WP_Query $wp_query Global WP_Query instance.
     
    727819
    728820/**
    729821 * Is the query the main query?
    730  *
     822 *
     823 * For more information on this and similar theme functions, check out
     824 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     825 * Conditional Tags} article in the Theme Developer Handbook.
     826 *
    731827 * @since 3.3.0
    732828 *
    733829 * @global WP_Query $wp_query Global WP_Query instance.
     
    771867
    772868/**
    773869 * Whether the caller is in the Loop.
     870 *
     871 * For more information on this and similar theme functions, check out
     872 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     873 * Conditional Tags} article in the Theme Developer Handbook.
    774874 *
    775875 * @since 2.0.0
    776876 *
  • src/wp-includes/taxonomy.php

     
    262262 * Checks that the taxonomy name exists.
    263263 *
    264264 * Formerly is_taxonomy(), introduced in 2.3.0.
     265 *
     266 * For more information on this and similar theme functions, check out
     267 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     268 * Conditional Tags} article in the Theme Developer Handbook.
    265269 *
    266270 * @since 3.0.0
    267271 *
     
    283287 * object, and finally returns the hierarchical value in the object.
    284288 *
    285289 * A false return value might also mean that the taxonomy does not exist.
     290 *
     291 * For more information on this and similar theme functions, check out
     292 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     293 * Conditional Tags} article in the Theme Developer Handbook.
    286294 *
    287295 * @since 2.3.0
    288296 *
     
    13181326 * Check if Term exists.
    13191327 *
    13201328 * Formerly is_term(), introduced in 2.3.0.
     1329 *
     1330 * For more information on this and similar theme functions, check out
     1331 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     1332 * Conditional Tags} article in the Theme Developer Handbook.
    13211333 *
    13221334 * @since 3.0.0
    13231335 *
  • src/wp-includes/user.php

     
    13701370
    13711371/**
    13721372 * Checks whether the given username exists.
     1373 *
     1374 * For more information on this and similar theme functions, check out
     1375 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     1376 * Conditional Tags} article in the Theme Developer Handbook.
    13731377 *
    13741378 * @since 2.0.0
    13751379 *
     
    13961400
    13971401/**
    13981402 * Checks whether the given email exists.
     1403 *
     1404 * For more information on this and similar theme functions, check out
     1405 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     1406 * Conditional Tags} article in the Theme Developer Handbook.
    13991407 *
    14001408 * @since 2.1.0
    14011409 *
  • src/wp-includes/widgets.php

     
    812812 *
    813813 * NOTE: $widget_id and $id_base are the same for single widgets. To be effective
    814814 * this function has to run after widgets have initialized, at action {@see 'init'} or later.
    815  *
     815 *
     816 * For more information on this and similar theme functions, check out
     817 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     818 * Conditional Tags} article in the Theme Developer Handbook.
     819 *
    816820 * @since 2.2.0
    817821 *
    818822 * @global array $wp_registered_widgets
     
    850854
    851855/**
    852856 * Whether the dynamic sidebar is enabled and used by theme.
    853  *
     857 *
     858 * For more information on this and similar theme functions, check out
     859 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     860 * Conditional Tags} article in the Theme Developer Handbook.
     861 *
    854862 * @since 2.2.0
    855863 *
    856864 * @global array $wp_registered_widgets
     
    875883
    876884/**
    877885 * Whether a sidebar is in use.
    878  *
     886 *
     887 * For more information on this and similar theme functions, check out
     888 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
     889 * Conditional Tags} article in the Theme Developer Handbook.
     890 *
    879891 * @since 2.8.0
    880892 *
    881893 * @param string|int $index Sidebar name, id or number to check.