author | ymh <ymh.work@gmail.com> |
Mon, 08 Sep 2025 19:44:41 +0200 | |
changeset 23 | 417f20492bf7 |
parent 22 | 8c2e4d02f4ef |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
2 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3 |
* Widget API: Default core widgets |
0 | 4 |
* |
5 |
* @package WordPress |
|
6 |
* @subpackage Widgets |
|
7 |
* @since 2.8.0 |
|
8 |
*/ |
|
9 |
||
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
18
diff
changeset
|
10 |
// Don't load directly. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
18
diff
changeset
|
11 |
if ( ! defined( 'ABSPATH' ) ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
18
diff
changeset
|
12 |
die( '-1' ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
18
diff
changeset
|
13 |
} |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
18
diff
changeset
|
14 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
15 |
/** WP_Widget_Pages class */ |
16 | 16 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-pages.php'; |
0 | 17 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
18 |
/** WP_Widget_Links class */ |
16 | 19 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-links.php'; |
0 | 20 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
21 |
/** WP_Widget_Search class */ |
16 | 22 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-search.php'; |
0 | 23 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
24 |
/** WP_Widget_Archives class */ |
16 | 25 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-archives.php'; |
5 | 26 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
27 |
/** WP_Widget_Media class */ |
16 | 28 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-media.php'; |
5 | 29 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
30 |
/** WP_Widget_Media_Audio class */ |
16 | 31 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-media-audio.php'; |
0 | 32 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
33 |
/** WP_Widget_Media_Image class */ |
16 | 34 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-media-image.php'; |
0 | 35 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
36 |
/** WP_Widget_Media_Video class */ |
16 | 37 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-media-video.php'; |
0 | 38 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
39 |
/** WP_Widget_Media_Gallery class */ |
16 | 40 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-media-gallery.php'; |
0 | 41 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
42 |
/** WP_Widget_Meta class */ |
16 | 43 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-meta.php'; |
0 | 44 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
45 |
/** WP_Widget_Calendar class */ |
16 | 46 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-calendar.php'; |
0 | 47 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
48 |
/** WP_Widget_Text class */ |
16 | 49 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-text.php'; |
0 | 50 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
51 |
/** WP_Widget_Categories class */ |
16 | 52 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-categories.php'; |
0 | 53 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
54 |
/** WP_Widget_Recent_Posts class */ |
16 | 55 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-recent-posts.php'; |
5 | 56 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
57 |
/** WP_Widget_Recent_Comments class */ |
16 | 58 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-recent-comments.php'; |
0 | 59 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
60 |
/** WP_Widget_RSS class */ |
16 | 61 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-rss.php'; |
5 | 62 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
63 |
/** WP_Widget_Tag_Cloud class */ |
16 | 64 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-tag-cloud.php'; |
0 | 65 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
66 |
/** WP_Nav_Menu_Widget class */ |
16 | 67 |
require_once ABSPATH . WPINC . '/widgets/class-wp-nav-menu-widget.php'; |
0 | 68 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
69 |
/** WP_Widget_Custom_HTML class */ |
16 | 70 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-custom-html.php'; |
18 | 71 |
|
72 |
/** WP_Widget_Block class */ |
|
73 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-block.php'; |