author | ymh <ymh.work@gmail.com> |
Tue, 15 Dec 2020 13:49:49 +0100 | |
changeset 16 | a86126ab1dd4 |
parent 7 | cf61fcea0001 |
child 18 | be944660c56a |
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 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
10 |
/** WP_Widget_Pages class */ |
16 | 11 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-pages.php'; |
0 | 12 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
13 |
/** WP_Widget_Links class */ |
16 | 14 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-links.php'; |
0 | 15 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
16 |
/** WP_Widget_Search class */ |
16 | 17 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-search.php'; |
0 | 18 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
19 |
/** WP_Widget_Archives class */ |
16 | 20 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-archives.php'; |
5 | 21 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
22 |
/** WP_Widget_Media class */ |
16 | 23 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-media.php'; |
5 | 24 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
25 |
/** WP_Widget_Media_Audio class */ |
16 | 26 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-media-audio.php'; |
0 | 27 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
28 |
/** WP_Widget_Media_Image class */ |
16 | 29 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-media-image.php'; |
0 | 30 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
31 |
/** WP_Widget_Media_Video class */ |
16 | 32 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-media-video.php'; |
0 | 33 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
34 |
/** WP_Widget_Media_Gallery class */ |
16 | 35 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-media-gallery.php'; |
0 | 36 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
37 |
/** WP_Widget_Meta class */ |
16 | 38 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-meta.php'; |
0 | 39 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
40 |
/** WP_Widget_Calendar class */ |
16 | 41 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-calendar.php'; |
0 | 42 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
43 |
/** WP_Widget_Text class */ |
16 | 44 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-text.php'; |
0 | 45 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
46 |
/** WP_Widget_Categories class */ |
16 | 47 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-categories.php'; |
0 | 48 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
49 |
/** WP_Widget_Recent_Posts class */ |
16 | 50 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-recent-posts.php'; |
5 | 51 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
52 |
/** WP_Widget_Recent_Comments class */ |
16 | 53 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-recent-comments.php'; |
0 | 54 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
55 |
/** WP_Widget_RSS class */ |
16 | 56 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-rss.php'; |
5 | 57 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
58 |
/** WP_Widget_Tag_Cloud class */ |
16 | 59 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-tag-cloud.php'; |
0 | 60 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
61 |
/** WP_Nav_Menu_Widget class */ |
16 | 62 |
require_once ABSPATH . WPINC . '/widgets/class-wp-nav-menu-widget.php'; |
0 | 63 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
64 |
/** WP_Widget_Custom_HTML class */ |
16 | 65 |
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-custom-html.php'; |