diff --git a/wp-admin/includes/class-wp-comments-list-table.php b/wp-admin/includes/class-wp-comments-list-table.php index d5c98ea949..37e65cfc19 100644 --- a/wp-admin/includes/class-wp-comments-list-table.php +++ b/wp-admin/includes/class-wp-comments-list-table.php @@ -507,7 +507,6 @@ class WP_Comments_List_Table extends WP_List_Table { * Generate and display row actions links. * * @since 4.3.0 - * @access protected * * @global string $comment_status Status for the current listed comments. * diff --git a/wp-admin/includes/class-wp-upgrader.php b/wp-admin/includes/class-wp-upgrader.php index 53ae5e13ea..6ee7684c35 100644 --- a/wp-admin/includes/class-wp-upgrader.php +++ b/wp-admin/includes/class-wp-upgrader.php @@ -245,7 +245,6 @@ class WP_Upgrader { * Filters whether to return the package. * * @since 3.7.0 - * @access public * * @param bool $reply Whether to bail without returning the package. * Default false. @@ -812,7 +811,6 @@ class WP_Upgrader { * Creates a lock using WordPress options. * * @since 4.5.0 - * @access public * @static * * @param string $lock_name The name of this unique lock. @@ -859,7 +857,6 @@ class WP_Upgrader { * Releases an upgrader lock. * * @since 4.5.0 - * @access public * @static * * @see WP_Upgrader::create_lock() diff --git a/wp-includes/class-wp-customize-widgets.php b/wp-includes/class-wp-customize-widgets.php index b7080acce9..856a832ed9 100644 --- a/wp-includes/class-wp-customize-widgets.php +++ b/wp-includes/class-wp-customize-widgets.php @@ -1134,7 +1134,6 @@ final class WP_Customize_Widgets { * and at the very end of the wp_footer, * * @since 3.9.0 - * @access public * * @global array $wp_registered_sidebars * @global array $wp_registered_widgets diff --git a/wp-includes/query.php b/wp-includes/query.php index 439362bc5c..0ed1fab575 100644 --- a/wp-includes/query.php +++ b/wp-includes/query.php @@ -34,7 +34,6 @@ function get_query_var( $var, $default = '' ) { * Wrapper for WP_Query::get_queried_object(). * * @since 3.1.0 - * @access public * * @global WP_Query $wp_query Global WP_Query instance. * diff --git a/wp-includes/theme.php b/wp-includes/theme.php index 578c988628..3c908f1820 100644 --- a/wp-includes/theme.php +++ b/wp-includes/theme.php @@ -1540,7 +1540,6 @@ function background_color() { * Default custom background callback. * * @since 3.0.0 - * @access protected */ function _custom_background_cb() { // $background is the saved custom image, or the default image. @@ -1620,7 +1619,6 @@ body.custom-background { } * Render the Custom CSS style element. * * @since 4.7.0 - * @access public */ function wp_custom_css_cb() { $styles = wp_get_custom_css(); @@ -1635,7 +1633,6 @@ function wp_custom_css_cb() { * Fetch the `custom_css` post for a given theme. * * @since 4.7.0 - * @access public * * @param string $stylesheet Optional. A theme object stylesheet name. Defaults to the current theme. * @return WP_Post|null The custom_css post or null if none exists. @@ -1687,7 +1684,6 @@ function wp_get_custom_css_post( $stylesheet = '' ) { * Fetch the saved Custom CSS content for rendering. * * @since 4.7.0 - * @access public * * @param string $stylesheet Optional. A theme object stylesheet name. Defaults to the current theme. * @return string The Custom CSS Post content. @@ -1723,7 +1719,6 @@ function wp_get_custom_css( $stylesheet = '' ) { * Inserts a `custom_css` post when one doesn't yet exist. * * @since 4.7.0 - * @access public * * @param string $css CSS, stored in `post_content`. * @param array $args { diff --git a/wp-includes/version.php b/wp-includes/version.php index 436cddcb57..59575117de 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9-alpha-41167'; +$wp_version = '4.9-alpha-41168'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.