diff --git a/wp-includes/class-wp-widget.php b/wp-includes/class-wp-widget.php index 44f3686ddc..de9db07cc9 100644 --- a/wp-includes/class-wp-widget.php +++ b/wp-includes/class-wp-widget.php @@ -37,6 +37,24 @@ class WP_Widget { */ public $name; + /** + * Option name for this widget type. + * + * @since 2.8.0 + * @access public + * @var string + */ + public $option_name; + + /** + * Alt option name for this widget type. + * + * @since 2.8.0 + * @access public + * @var string + */ + public $alt_option_name; + /** * Option array passed to wp_register_sidebar_widget(). * diff --git a/wp-includes/version.php b/wp-includes/version.php index 964cbc3095..ae0d8a1239 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-alpha-38317'; +$wp_version = '4.7-alpha-38318'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.