mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-10 18:37:58 +01:00
Docs: Add a file header to wp-includes/widgets/class-wp-widget-search.php, introduced in [33746].
Also clarifies the class DocBlock summary and tags for `WP_Widget_Search`. See #33413. See #33701. Built from https://develop.svn.wordpress.org/trunk@34438 git-svn-id: http://core.svn.wordpress.org/trunk@34402 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5cd5252964
commit
32118a94e5
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.4-alpha-34437';
|
$wp_version = '4.4-alpha-34438';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
@ -1,10 +1,18 @@
|
|||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
* Search widget class
|
* Widget API: WP_Widget_Search class
|
||||||
*
|
*
|
||||||
* @since 2.8.0
|
|
||||||
* @package WordPress
|
* @package WordPress
|
||||||
* @subpackage Widgets
|
* @subpackage Widgets
|
||||||
|
* @since 4.4.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Core class used to implement a Search widget.
|
||||||
|
*
|
||||||
|
* @since 2.8.0
|
||||||
|
*
|
||||||
|
* @see WP_Widget
|
||||||
*/
|
*/
|
||||||
class WP_Widget_Search extends WP_Widget {
|
class WP_Widget_Search extends WP_Widget {
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user