mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-04-08 14:44:37 +00:00
Docs: Various docblock improvements.
See #54729 git-svn-id: https://develop.svn.wordpress.org/trunk@53299 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -1751,7 +1751,17 @@ final class _WP_Editors {
|
||||
* @since 3.1.0
|
||||
*
|
||||
* @param array $args Optional. Accepts 'pagenum' and 's' (search) arguments.
|
||||
* @return array|false Results.
|
||||
* @return array|false $results {
|
||||
* An array of associative arrays of query results, false if there are none.
|
||||
*
|
||||
* @type array ...$0 {
|
||||
* @type int $ID Post ID.
|
||||
* @type string $title The trimmed, escaped post title.
|
||||
* @type string $permalink Post permalink.
|
||||
* @type string $info A 'Y/m/d'-formatted date for 'post' post type,
|
||||
* the 'singular_name' post type label otherwise.
|
||||
* }
|
||||
* }
|
||||
*/
|
||||
public static function wp_link_query( $args = array() ) {
|
||||
$pts = get_post_types( array( 'public' => true ), 'objects' );
|
||||
|
||||
Reference in New Issue
Block a user