Remove all @package and @subpackage PHPDoc tags not at the file- or class-levels in core.

See #27200.


git-svn-id: https://develop.svn.wordpress.org/trunk@27262 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes
2014-02-25 17:13:08 +00:00
parent 9bdaa48e3e
commit 647f80595d
23 changed files with 13 additions and 354 deletions

View File

@@ -876,8 +876,6 @@ function get_page_statuses() {
*
* Arguments prefixed with an _underscore shouldn't be used by plugins and themes.
*
* @package WordPress
* @subpackage Post
* @since 3.0.0
* @uses $wp_post_statuses Inserts new post status object into the list
*
@@ -951,8 +949,6 @@ function register_post_status($post_status, $args = array()) {
/**
* Retrieve a post status object by name
*
* @package WordPress
* @subpackage Post
* @since 3.0.0
* @uses $wp_post_statuses
* @see register_post_status
@@ -973,8 +969,6 @@ function get_post_status_object( $post_status ) {
/**
* Get a list of all registered post status objects.
*
* @package WordPress
* @subpackage Post
* @since 3.0.0
* @uses $wp_post_statuses
* @see register_post_status
@@ -1044,8 +1038,6 @@ function get_post_type( $post = null ) {
/**
* Retrieve a post type object by name
*
* @package WordPress
* @subpackage Post
* @since 3.0.0
* @uses $wp_post_types
* @see register_post_type
@@ -1066,8 +1058,6 @@ function get_post_type_object( $post_type ) {
/**
* Get a list of all registered post type objects.
*
* @package WordPress
* @subpackage Post
* @since 2.9.0
* @uses $wp_post_types
* @see register_post_type
@@ -2601,8 +2591,6 @@ function wp_get_post_categories( $post_id = 0, $args = array() ) {
* is set to 'all'. There are other defaults that can be overridden in
* {@link wp_get_object_terms()}.
*
* @package WordPress
* @subpackage Post
* @since 2.3.0
*
* @uses wp_get_object_terms() Gets the tags for returning. Args can be found here
@@ -2622,8 +2610,6 @@ function wp_get_post_tags( $post_id = 0, $args = array() ) {
* is set to 'all'. There are other defaults that can be overridden in
* {@link wp_get_object_terms()}.
*
* @package WordPress
* @subpackage Post
* @since 2.8.0
*
* @uses wp_get_object_terms() Gets the tags for returning. Args can be found here
@@ -3215,8 +3201,6 @@ function _truncate_post_slug( $slug, $length = 200 ) {
*
* @uses wp_set_post_tags() Same first two parameters, but the last parameter is always set to true.
*
* @package WordPress
* @subpackage Post
* @since 2.3.0
*
* @param int $post_id Post ID
@@ -4716,8 +4700,6 @@ function _get_last_post_time( $timezone, $field ) {
/**
* Updates posts in cache.
*
* @package WordPress
* @subpackage Cache
* @since 1.5.1
*
* @param array $posts Array of post objects
@@ -4739,8 +4721,6 @@ function update_post_cache( &$posts ) {
* This function not run if $_wp_suspend_cache_invalidation is not empty. See
* wp_suspend_cache_invalidation().
*
* @package WordPress
* @subpackage Cache
* @since 2.0.0
*
* @uses do_action() Calls 'clean_post_cache' on $id before adding children (if any).
@@ -4780,8 +4760,6 @@ function clean_post_cache( $post ) {
/**
* Call major cache updating functions for list of Post objects.
*
* @package WordPress
* @subpackage Cache
* @since 1.5.0
*
* @uses update_post_cache()
@@ -4834,8 +4812,6 @@ function update_post_caches(&$posts, $post_type = 'post', $update_term_cache = t
* metadata cache for the posts. Therefore, the functions, which call this
* function, do not need to perform SQL queries on their own.
*
* @package WordPress
* @subpackage Cache
* @since 2.1.0
*
* @param array $post_ids List of post IDs.
@@ -4854,8 +4830,6 @@ function update_postmeta_cache($post_ids) {
* This function will not run if $_wp_suspend_cache_invalidation is not empty. See
* wp_suspend_cache_invalidation().
*
* @package WordPress
* @subpackage Cache
* @since 3.0.0
*
* @uses do_action() Calls 'clean_attachment_cache' on $id.