Changeset 62024
- Timestamp:
- 03/13/2026 10:43:20 PM (11 hours ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/includes/bookmark.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/bookmark.php
r59923 r62024 12 12 * @since 2.0.0 13 13 * 14 * @return int |WP_Error Value 0 or WP_Error on failure. The link ID on success.14 * @return int The link ID on success. The value 0 on failure. 15 15 */ 16 16 function add_link() { … … 24 24 * 25 25 * @param int $link_id Optional. ID of the link to edit. Default 0. 26 * @return int |WP_Error Value 0 or WP_Error on failure. The link ID on success.26 * @return int The link ID on success. The value 0 on failure. 27 27 */ 28 28 function edit_link( $link_id = 0 ) { … … 170 170 * } 171 171 * @param bool $wp_error Optional. Whether to return a WP_Error object on failure. Default false. 172 * @return int|WP_Error Value 0 or WP_Error on failure. The link ID on success.172 * @return int|WP_Error The link ID on success. The value 0 or WP_Error on failure. 173 173 */ 174 174 function wp_insert_link( $linkdata, $wp_error = false ) { … … 296 296 * 297 297 * @param array $linkdata Link data to update. See wp_insert_link() for accepted arguments. 298 * @return int |WP_Error Value 0 or WP_Error on failure. The updated link ID on success.298 * @return int The updated link ID on success. The value 0 on failure. 299 299 */ 300 300 function wp_update_link( $linkdata ) {
Note: See TracChangeset
for help on using the changeset viewer.