2009-03-16 23:02:40 +01:00
|
|
|
<?php
|
2009-03-18 03:43:45 +01:00
|
|
|
/**
|
2015-09-22 15:36:25 +02:00
|
|
|
* Widget API: Default core widgets
|
2009-03-16 23:02:40 +01:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Widgets
|
2015-09-22 15:36:25 +02:00
|
|
|
* @since 2.8.0
|
2009-03-16 23:02:40 +01:00
|
|
|
*/
|
|
|
|
|
2015-09-22 15:36:25 +02:00
|
|
|
/** WP_Widget_Pages class */
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-pages.php';
|
2015-09-22 15:36:25 +02:00
|
|
|
|
|
|
|
/** WP_Widget_Links class */
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-links.php';
|
2015-09-22 15:36:25 +02:00
|
|
|
|
|
|
|
/** WP_Widget_Search class */
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-search.php';
|
2015-09-22 15:36:25 +02:00
|
|
|
|
|
|
|
/** WP_Widget_Archives class */
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-archives.php';
|
2015-09-22 15:36:25 +02:00
|
|
|
|
Widgets: Introduce media widgets for images, audio, and video with extensible base for additional media widgets in the future.
The last time a new widget was introduced, Vuvuzelas were a thing, Angry Birds started taking over phones, and WordPress stopped shipping with Kubrick. Seven years and 17 releases without new widgets have been enough, time to spice up your sidebar!
Props westonruter, melchoyce, obenland, timmydcrawford, adamsilverstein, gonom9, wonderboymusic, Fab1en, DrewAPicture, sirbrillig, joen, matias, samikeijonen, afercia, celloexpressions, designsimply, michelleweber, ranh, kjellr, karmatosed.
Fixes #32417, #39993, #39994, #39995.
Built from https://develop.svn.wordpress.org/trunk@40640
git-svn-id: http://core.svn.wordpress.org/trunk@40501 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-11 23:11:44 +02:00
|
|
|
/** WP_Widget_Media class */
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-media.php';
|
Widgets: Introduce media widgets for images, audio, and video with extensible base for additional media widgets in the future.
The last time a new widget was introduced, Vuvuzelas were a thing, Angry Birds started taking over phones, and WordPress stopped shipping with Kubrick. Seven years and 17 releases without new widgets have been enough, time to spice up your sidebar!
Props westonruter, melchoyce, obenland, timmydcrawford, adamsilverstein, gonom9, wonderboymusic, Fab1en, DrewAPicture, sirbrillig, joen, matias, samikeijonen, afercia, celloexpressions, designsimply, michelleweber, ranh, kjellr, karmatosed.
Fixes #32417, #39993, #39994, #39995.
Built from https://develop.svn.wordpress.org/trunk@40640
git-svn-id: http://core.svn.wordpress.org/trunk@40501 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-11 23:11:44 +02:00
|
|
|
|
|
|
|
/** WP_Widget_Media_Audio class */
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-media-audio.php';
|
Widgets: Introduce media widgets for images, audio, and video with extensible base for additional media widgets in the future.
The last time a new widget was introduced, Vuvuzelas were a thing, Angry Birds started taking over phones, and WordPress stopped shipping with Kubrick. Seven years and 17 releases without new widgets have been enough, time to spice up your sidebar!
Props westonruter, melchoyce, obenland, timmydcrawford, adamsilverstein, gonom9, wonderboymusic, Fab1en, DrewAPicture, sirbrillig, joen, matias, samikeijonen, afercia, celloexpressions, designsimply, michelleweber, ranh, kjellr, karmatosed.
Fixes #32417, #39993, #39994, #39995.
Built from https://develop.svn.wordpress.org/trunk@40640
git-svn-id: http://core.svn.wordpress.org/trunk@40501 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-11 23:11:44 +02:00
|
|
|
|
|
|
|
/** WP_Widget_Media_Image class */
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-media-image.php';
|
Widgets: Introduce media widgets for images, audio, and video with extensible base for additional media widgets in the future.
The last time a new widget was introduced, Vuvuzelas were a thing, Angry Birds started taking over phones, and WordPress stopped shipping with Kubrick. Seven years and 17 releases without new widgets have been enough, time to spice up your sidebar!
Props westonruter, melchoyce, obenland, timmydcrawford, adamsilverstein, gonom9, wonderboymusic, Fab1en, DrewAPicture, sirbrillig, joen, matias, samikeijonen, afercia, celloexpressions, designsimply, michelleweber, ranh, kjellr, karmatosed.
Fixes #32417, #39993, #39994, #39995.
Built from https://develop.svn.wordpress.org/trunk@40640
git-svn-id: http://core.svn.wordpress.org/trunk@40501 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-11 23:11:44 +02:00
|
|
|
|
|
|
|
/** WP_Widget_Media_Video class */
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-media-video.php';
|
Widgets: Introduce media widgets for images, audio, and video with extensible base for additional media widgets in the future.
The last time a new widget was introduced, Vuvuzelas were a thing, Angry Birds started taking over phones, and WordPress stopped shipping with Kubrick. Seven years and 17 releases without new widgets have been enough, time to spice up your sidebar!
Props westonruter, melchoyce, obenland, timmydcrawford, adamsilverstein, gonom9, wonderboymusic, Fab1en, DrewAPicture, sirbrillig, joen, matias, samikeijonen, afercia, celloexpressions, designsimply, michelleweber, ranh, kjellr, karmatosed.
Fixes #32417, #39993, #39994, #39995.
Built from https://develop.svn.wordpress.org/trunk@40640
git-svn-id: http://core.svn.wordpress.org/trunk@40501 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-11 23:11:44 +02:00
|
|
|
|
2017-09-25 08:28:45 +02:00
|
|
|
/** WP_Widget_Media_Gallery class */
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-media-gallery.php';
|
2017-09-25 08:28:45 +02:00
|
|
|
|
Widgets: Introduce media widgets for images, audio, and video with extensible base for additional media widgets in the future.
The last time a new widget was introduced, Vuvuzelas were a thing, Angry Birds started taking over phones, and WordPress stopped shipping with Kubrick. Seven years and 17 releases without new widgets have been enough, time to spice up your sidebar!
Props westonruter, melchoyce, obenland, timmydcrawford, adamsilverstein, gonom9, wonderboymusic, Fab1en, DrewAPicture, sirbrillig, joen, matias, samikeijonen, afercia, celloexpressions, designsimply, michelleweber, ranh, kjellr, karmatosed.
Fixes #32417, #39993, #39994, #39995.
Built from https://develop.svn.wordpress.org/trunk@40640
git-svn-id: http://core.svn.wordpress.org/trunk@40501 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2017-05-11 23:11:44 +02:00
|
|
|
/** WP_Widget_Meta class */
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-meta.php';
|
2015-09-22 15:36:25 +02:00
|
|
|
|
|
|
|
/** WP_Widget_Calendar class */
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-calendar.php';
|
2015-09-22 15:36:25 +02:00
|
|
|
|
|
|
|
/** WP_Widget_Text class */
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-text.php';
|
2015-09-22 15:36:25 +02:00
|
|
|
|
|
|
|
/** WP_Widget_Categories class */
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-categories.php';
|
2015-09-22 15:36:25 +02:00
|
|
|
|
|
|
|
/** WP_Widget_Recent_Posts class */
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-recent-posts.php';
|
2015-09-22 15:36:25 +02:00
|
|
|
|
|
|
|
/** WP_Widget_Recent_Comments class */
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-recent-comments.php';
|
2015-09-22 15:36:25 +02:00
|
|
|
|
|
|
|
/** WP_Widget_RSS class */
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-rss.php';
|
2015-09-22 15:36:25 +02:00
|
|
|
|
|
|
|
/** WP_Widget_Tag_Cloud class */
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-tag-cloud.php';
|
2015-09-22 15:36:25 +02:00
|
|
|
|
|
|
|
/** WP_Nav_Menu_Widget class */
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once ABSPATH . WPINC . '/widgets/class-wp-nav-menu-widget.php';
|
2017-06-10 01:54:42 +02:00
|
|
|
|
2017-06-24 02:00:45 +02:00
|
|
|
/** WP_Widget_Custom_HTML class */
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-custom-html.php';
|
2021-05-25 10:27:57 +02:00
|
|
|
|
|
|
|
/** WP_Widget_Block class */
|
|
|
|
require_once ABSPATH . WPINC . '/widgets/class-wp-widget-block.php';
|