s/echos/echoes/ in phpdoc. props demetris, fixes #13742.
git-svn-id: http://svn.automattic.com/wordpress/trunk@15148 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e10b12eb0c
commit
f60838c8f9
|
@ -2965,7 +2965,7 @@ function get_hidden_meta_boxes( $screen ) {
|
|||
* Show settings sections in your admin page callback function with do_settings_sections().
|
||||
* Add settings fields to your section with add_settings_field()
|
||||
*
|
||||
* The $callback argument should be the name of a function that echos out any
|
||||
* The $callback argument should be the name of a function that echoes out any
|
||||
* content you want to show at the top of the settings section before the actual
|
||||
* fields. It can output nothing if you want.
|
||||
*
|
||||
|
|
|
@ -176,7 +176,7 @@ function get_the_author_posts() {
|
|||
*
|
||||
* @link http://codex.wordpress.org/Template_Tags/the_author_posts
|
||||
* @since 0.71
|
||||
* @uses get_the_author_posts() Echos returned value from function.
|
||||
* @uses get_the_author_posts() Echoes returned value from function.
|
||||
*/
|
||||
function the_author_posts() {
|
||||
echo get_the_author_posts();
|
||||
|
|
|
@ -439,7 +439,7 @@ class WP_Object_Cache {
|
|||
}
|
||||
|
||||
/**
|
||||
* Echos the stats of the caching.
|
||||
* Echoes the stats of the caching.
|
||||
*
|
||||
* Gives the cache hits, and cache misses. Also prints every cached group,
|
||||
* key and the data.
|
||||
|
|
|
@ -160,7 +160,7 @@ function get_comment_author_link( $comment_ID = 0 ) {
|
|||
* Display the html link to the url of the author of the current comment.
|
||||
*
|
||||
* @since 0.71
|
||||
* @see get_comment_author_link() Echos result
|
||||
* @see get_comment_author_link() Echoes result
|
||||
*
|
||||
* @param int The ID of the comment for which to print the author's link. Optional.
|
||||
*/
|
||||
|
@ -187,7 +187,7 @@ function get_comment_author_IP( $comment_ID = 0 ) {
|
|||
* Display the IP address of the author of the current comment.
|
||||
*
|
||||
* @since 0.71
|
||||
* @see get_comment_author_IP() Echos Result
|
||||
* @see get_comment_author_IP() Echoes Result
|
||||
*
|
||||
* @param int $comment_ID The ID of the comment for which to print the author's IP address. Optional.
|
||||
*/
|
||||
|
@ -257,7 +257,7 @@ function get_comment_author_url_link( $linktext = '', $before = '', $after = ''
|
|||
* Displays the HTML link of the url of the author of the current comment.
|
||||
*
|
||||
* @since 0.71
|
||||
* @see get_comment_author_url_link() Echos result
|
||||
* @see get_comment_author_url_link() Echoes result
|
||||
*
|
||||
* @param string $linktext The text to display instead of the comment author's email address
|
||||
* @param string $before The text or HTML to display before the email link.
|
||||
|
@ -453,7 +453,7 @@ function get_comment_ID() {
|
|||
* Displays the comment id of the current comment.
|
||||
*
|
||||
* @since 0.71
|
||||
* @see get_comment_ID() Echos Result
|
||||
* @see get_comment_ID() Echoes Result
|
||||
*/
|
||||
function comment_ID() {
|
||||
echo get_comment_ID();
|
||||
|
|
|
@ -244,7 +244,7 @@ function wp_login_url($redirect = '', $force_reauth = false) {
|
|||
}
|
||||
|
||||
/**
|
||||
* Provides a simple login form for use anywhere within WordPress. By default, it echos
|
||||
* Provides a simple login form for use anywhere within WordPress. By default, it echoes
|
||||
* the HTML immediately. Pass array('echo'=>false) to return the string instead.
|
||||
*
|
||||
* @since 3.0.0
|
||||
|
|
Loading…
Reference in New Issue