Ticket #13742: t13742-phpDoc-echos-echoes.diff
| File t13742-phpDoc-echos-echoes.diff, 3.5 KB (added by demetris, 3 years ago) |
|---|
-
wp-admin/includes/template.php
2965 2965 * Show settings sections in your admin page callback function with do_settings_sections(). 2966 2966 * Add settings fields to your section with add_settings_field() 2967 2967 * 2968 * The $callback argument should be the name of a function that echo s out any2968 * The $callback argument should be the name of a function that echoes out any 2969 2969 * content you want to show at the top of the settings section before the actual 2970 2970 * fields. It can output nothing if you want. 2971 2971 * -
wp-includes/author-template.php
176 176 * 177 177 * @link http://codex.wordpress.org/Template_Tags/the_author_posts 178 178 * @since 0.71 179 * @uses get_the_author_posts() Echo s returned value from function.179 * @uses get_the_author_posts() Echoes returned value from function. 180 180 */ 181 181 function the_author_posts() { 182 182 echo get_the_author_posts(); -
wp-includes/cache.php
439 439 } 440 440 441 441 /** 442 * Echo s the stats of the caching.442 * Echoes the stats of the caching. 443 443 * 444 444 * Gives the cache hits, and cache misses. Also prints every cached group, 445 445 * key and the data. -
wp-includes/comment-template.php
160 160 * Display the html link to the url of the author of the current comment. 161 161 * 162 162 * @since 0.71 163 * @see get_comment_author_link() Echo s result163 * @see get_comment_author_link() Echoes result 164 164 * 165 165 * @param int The ID of the comment for which to print the author's link. Optional. 166 166 */ … … 187 187 * Display the IP address of the author of the current comment. 188 188 * 189 189 * @since 0.71 190 * @see get_comment_author_IP() Echo s Result190 * @see get_comment_author_IP() Echoes Result 191 191 * 192 192 * @param int $comment_ID The ID of the comment for which to print the author's IP address. Optional. 193 193 */ … … 257 257 * Displays the HTML link of the url of the author of the current comment. 258 258 * 259 259 * @since 0.71 260 * @see get_comment_author_url_link() Echo s result260 * @see get_comment_author_url_link() Echoes result 261 261 * 262 262 * @param string $linktext The text to display instead of the comment author's email address 263 263 * @param string $before The text or HTML to display before the email link. … … 453 453 * Displays the comment id of the current comment. 454 454 * 455 455 * @since 0.71 456 * @see get_comment_ID() Echo s Result456 * @see get_comment_ID() Echoes Result 457 457 */ 458 458 function comment_ID() { 459 459 echo get_comment_ID(); -
wp-includes/general-template.php
244 244 } 245 245 246 246 /** 247 * Provides a simple login form for use anywhere within WordPress. By default, it echo s247 * Provides a simple login form for use anywhere within WordPress. By default, it echoes 248 248 * the HTML immediately. Pass array('echo'=>false) to return the string instead. 249 249 * 250 250 * @since 3.0.0
