Fix spacing in docs for `get_pages()`.

Props DrewAPicture.
See #25186.



git-svn-id: https://develop.svn.wordpress.org/trunk@25268 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Scott Taylor 2013-09-05 23:20:20 +00:00
parent a1556cefb6
commit d765349b75
1 changed files with 18 additions and 18 deletions

View File

@ -3615,7 +3615,7 @@ function get_page_uri( $page ) {
} }
/** /**
* Retrieve a list of pages. * Retrieve a list of pages
* *
* @global wpdb $wpdb WordPress database abstraction object * @global wpdb $wpdb WordPress database abstraction object
* *
@ -3638,9 +3638,9 @@ function get_page_uri( $page ) {
* @type string 'post_type' The post type to return (default 'page'). * @type string 'post_type' The post type to return (default 'page').
* @type string 'post_status' A comma-separated list of post status types to include (default 'publish'). * @type string 'post_status' A comma-separated list of post status types to include (default 'publish').
* } * }
* @return array List of pages matching defaults or $args * @return array List of pages matching defaults or $args.
*/ */
function get_pages($args = '') { function get_pages( $args = '' ) {
global $wpdb; global $wpdb;
$pages = false; $pages = false;