@since s/3.2/3.2.0/
git-svn-id: http://svn.automattic.com/wordpress/trunk@18268 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
52e594510f
commit
2571545ec0
|
@ -87,7 +87,7 @@ class WP_Filesystem_Base {
|
|||
/**
|
||||
* Returns the path on the remote filesystem of WP_LANG_DIR
|
||||
*
|
||||
* @since 3.2
|
||||
* @since 3.2.0
|
||||
* @access public
|
||||
*
|
||||
* @return string The location of the remote path.
|
||||
|
|
|
@ -1204,7 +1204,7 @@ function dashboard_browser_nag_class( $classes ) {
|
|||
/**
|
||||
* Check if the user needs a browser update
|
||||
*
|
||||
* @since 3.2
|
||||
* @since 3.2.0
|
||||
*
|
||||
* @return array|bool False on failure, array of browser data on success.
|
||||
*/
|
||||
|
|
|
@ -267,7 +267,7 @@ $_old_files = array(
|
|||
* Filename (relative to wp-content) => Introduced version
|
||||
* Directories should be noted by suffixing it with a trailing slash (/)
|
||||
*
|
||||
* @since 3.2
|
||||
* @since 3.2.0
|
||||
* @global array $_new_bundled_files
|
||||
* @var array
|
||||
* @name $_new_bundled_files
|
||||
|
@ -471,7 +471,7 @@ function update_core($from, $to) {
|
|||
* This is a temporary function for the 3.1 -> 3.2 upgrade only and will be removed in 3.3
|
||||
*
|
||||
* @ignore
|
||||
* @since 3.2
|
||||
* @since 3.2.0
|
||||
* @see copy_dir()
|
||||
*
|
||||
* @param string $from source directory
|
||||
|
|
|
@ -373,7 +373,7 @@ function wp_list_authors($args = '') {
|
|||
*
|
||||
* Checks to see if more than one author has published posts.
|
||||
*
|
||||
* @since 3.2
|
||||
* @since 3.2.0
|
||||
* @return bool Whether or not we have more than one author
|
||||
*/
|
||||
function is_multi_author() {
|
||||
|
|
|
@ -82,7 +82,7 @@ function get_the_category( $id = false ) {
|
|||
_make_cat_compat( $categories[$key] );
|
||||
}
|
||||
|
||||
// Filter name is plural because we return alot of categories not just one
|
||||
// Filter name is plural because we return alot of categories (possibly more than #13237) not just one
|
||||
return apply_filters( 'get_the_categories', $categories );
|
||||
}
|
||||
|
||||
|
|
|
@ -376,7 +376,7 @@ function get_meta_sql( $meta_query = false, $type, $primary_table, $primary_id_c
|
|||
/**
|
||||
* Container class for a multiple metadata query
|
||||
*
|
||||
* @since 3.2
|
||||
* @since 3.2.0
|
||||
*/
|
||||
class WP_Meta_Query {
|
||||
/**
|
||||
|
@ -390,7 +390,7 @@ class WP_Meta_Query {
|
|||
* Possible values: 'NUMERIC', 'BINARY', 'CHAR', 'DATE', 'DATETIME', 'DECIMAL', 'SIGNED', 'TIME', 'UNSIGNED'.
|
||||
* Default: 'CHAR'
|
||||
*
|
||||
* @since 3.2
|
||||
* @since 3.2.0
|
||||
* @access public
|
||||
* @var array
|
||||
*/
|
||||
|
@ -399,7 +399,7 @@ class WP_Meta_Query {
|
|||
/**
|
||||
* The relation between the queries. Can be one of 'AND' or 'OR'.
|
||||
*
|
||||
* @since 3.2
|
||||
* @since 3.2.0
|
||||
* @access public
|
||||
* @var string
|
||||
*/
|
||||
|
@ -433,7 +433,7 @@ class WP_Meta_Query {
|
|||
/**
|
||||
* Constructs a meta query based on 'meta_*' query vars
|
||||
*
|
||||
* @since 3.2
|
||||
* @since 3.2.0
|
||||
* @access public
|
||||
*
|
||||
* @param array $qv The query variables
|
||||
|
@ -461,7 +461,7 @@ class WP_Meta_Query {
|
|||
/**
|
||||
* Generates SQL clauses to be appended to a main query.
|
||||
*
|
||||
* @since 3.2
|
||||
* @since 3.2.0
|
||||
* @access public
|
||||
*
|
||||
* @param string $type Type of meta
|
||||
|
|
|
@ -851,7 +851,7 @@ class WP_Query {
|
|||
/**
|
||||
* Metadata query container
|
||||
*
|
||||
* @since 3.2
|
||||
* @since 3.2.0
|
||||
* @access public
|
||||
* @var object WP_Meta_Query
|
||||
*/
|
||||
|
@ -1260,7 +1260,7 @@ class WP_Query {
|
|||
/**
|
||||
* Set if post thumbnails are cached
|
||||
*
|
||||
* @since 3.2
|
||||
* @since 3.2.0
|
||||
* @access public
|
||||
* @var bool
|
||||
*/
|
||||
|
|
|
@ -1446,7 +1446,7 @@ function get_header_image() {
|
|||
/**
|
||||
* Get random header image from registered images in theme.
|
||||
*
|
||||
* @since 3.2
|
||||
* @since 3.2.0
|
||||
*
|
||||
* @return string Path to header image
|
||||
*/
|
||||
|
@ -1476,7 +1476,7 @@ function get_random_header_image() {
|
|||
* Always true if user expressly chooses the option in Appearance > Header.
|
||||
* Also true if theme has multiple header images registered and no specific header image is chosen.
|
||||
*
|
||||
* @since 3.2
|
||||
* @since 3.2.0
|
||||
* @uses HEADER_IMAGE
|
||||
*
|
||||
* @param string $type The random pool to use. any|default|uploaded
|
||||
|
|
Loading…
Reference in New Issue