Docs: Remove inline @see tags from function, class, and method references in inline docs.

Known functions, classes, and methods are now auto-linked in Code Reference pages following #meta1483.

Note: Hook references are still linked via inline `@see` tags due to the unlikelihood of reliably matching for known hooks based on a RegEx pattern.

See #32246.


git-svn-id: https://develop.svn.wordpress.org/trunk@37342 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes
2016-05-02 03:59:56 +00:00
parent 97dc4022c8
commit c7bed4f8c6
38 changed files with 162 additions and 169 deletions

View File

@@ -657,7 +657,7 @@ function wp_clone( $object ) {
/**
* Whether the current request is for an administrative interface page.
*
* Does not check if the user is an administrator; {@see current_user_can()}
* Does not check if the user is an administrator; current_user_can()
* for checking roles and capabilities.
*
* @since 1.5.1
@@ -680,7 +680,7 @@ function is_admin() {
*
* e.g. `/wp-admin/`
*
* Does not check if the user is an administrator; {@see current_user_can()}
* Does not check if the user is an administrator; current_user_can()
* for checking roles and capabilities.
*
* @since 3.1.0
@@ -703,7 +703,7 @@ function is_blog_admin() {
*
* e.g. `/wp-admin/network/`
*
* Does not check if the user is an administrator; {@see current_user_can()}
* Does not check if the user is an administrator; current_user_can()
* for checking roles and capabilities.
*
* @since 3.1.0
@@ -728,7 +728,7 @@ function is_network_admin() {
*
* Does not inform on whether the user is an admin! Use capability
* checks to tell if the user should be accessing a section or not
* {@see current_user_can()}.
* current_user_can().
*
* @since 3.1.0
*