Set `@param` back to `$output`, not `$html`, in the inline filter docs. This was a copy/paste mistake.

See #22400.



git-svn-id: https://develop.svn.wordpress.org/trunk@28419 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Scott Taylor 2014-05-15 05:07:18 +00:00
parent 30dcd2c3e9
commit f116de6203
1 changed files with 3 additions and 3 deletions

View File

@ -800,7 +800,7 @@ function wp_link_pages( $args = '' ) {
*
* @since 3.6.0
*
* @param string $html HTML output of paginated posts' page links.
* @param string $output HTML output of paginated posts' page links.
* @param array $args An array of arguments.
*/
$html = apply_filters( 'wp_link_pages', $output, $args );
@ -953,7 +953,7 @@ function wp_dropdown_pages( $args = '' ) {
*
* @since 2.1.0
*
* @param string $html HTML output for drop down list of pages.
* @param string $output HTML output for drop down list of pages.
*/
$html = apply_filters( 'wp_dropdown_pages', $output );
@ -1060,7 +1060,7 @@ function wp_list_pages( $args = '' ) {
*
* @see wp_list_pages()
*
* @param string $html HTML output of the pages list.
* @param string $output HTML output of the pages list.
* @param array $r An array of page-listing arguments.
*/
$html = apply_filters( 'wp_list_pages', $output, $r );