mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 22:30:04 +00:00
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:
@@ -521,7 +521,7 @@ function wp_register_widget_control( $id, $name, $control_callback, $options = a
|
||||
*
|
||||
* @param string $id_base The base ID of a widget created by extending WP_Widget.
|
||||
* @param callable $update_callback Update callback method for the widget.
|
||||
* @param array $options Optional. Widget control options. See {@see wp_register_widget_control()}.
|
||||
* @param array $options Optional. Widget control options. See wp_register_widget_control().
|
||||
* Default empty array.
|
||||
*/
|
||||
function _register_widget_update_callback( $id_base, $update_callback, $options = array() ) {
|
||||
@@ -552,7 +552,7 @@ function _register_widget_update_callback( $id_base, $update_callback, $options
|
||||
* @param int|string $id Widget ID.
|
||||
* @param string $name Name attribute for the widget.
|
||||
* @param callable $form_callback Form callback.
|
||||
* @param array $options Optional. Widget control options. See {@see wp_register_widget_control()}.
|
||||
* @param array $options Optional. Widget control options. See wp_register_widget_control().
|
||||
* Default empty array.
|
||||
*/
|
||||
function _register_widget_form_callback($id, $name, $form_callback, $options = array()) {
|
||||
|
||||
Reference in New Issue
Block a user