Changeset 13395 for trunk/src/bp-blogs/bp-blogs-functions.php
- Timestamp:
- 01/07/2023 12:18:55 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-blogs/bp-blogs-functions.php
r13343 r13395 425 425 * Update blog name in BuddyPress blogmeta table. 426 426 * 427 * @global object $wpdb DB Layer.427 * @global wpdb $wpdb WordPress database object. 428 428 * 429 429 * @param string $oldvalue Value before save. Passed by do_action() but … … 441 441 * Update blog description in BuddyPress blogmeta table. 442 442 * 443 * @global object $wpdb DB Layer.443 * @global wpdb $wpdb WordPress database object. 444 444 * 445 445 * @param string $oldvalue Value before save. Passed by do_action() but … … 459 459 * @since 2.0.0 460 460 * 461 * @global object $wpdb DB Layer.461 * @global wpdb $wpdb WordPress database object. 462 462 * 463 463 * @param string $oldvalue Value before save. Passed by do_action() but … … 477 477 * @since 2.0.0 478 478 * 479 * @global object $wpdb DB Layer.479 * @global wpdb $wpdb WordPress database object. 480 480 * 481 481 * @param string $oldvalue Value before save. Passed by do_action() but … … 495 495 * @since 2.0.0 496 496 * 497 * @global object $wpdb DB Layer.497 * @global wpdb $wpdb WordPress database object. 498 498 * 499 499 * @param string $oldvalue Value before save. Passed by do_action() but … … 519 519 * @since 2.0.0 520 520 * 521 * @global object $wpdb DB Layer.521 * @global wpdb $wpdb WordPress database object. 522 522 * 523 523 * @param string $oldvalue Value before save. Passed by do_action() but … … 1295 1295 * Delete a metadata from the DB for a blog. 1296 1296 * 1297 * @global object $wpdb WordPress database accessobject.1297 * @global wpdb $wpdb WordPress database object. 1298 1298 * 1299 1299 * @param int $blog_id ID of the blog whose metadata is being deleted. … … 1344 1344 * @since 1.2.0 1345 1345 * 1346 * @global object $wpdb WordPress database accessobject.1346 * @global wpdb $wpdb WordPress database object. 1347 1347 * 1348 1348 * @param int $blog_id ID of the blog whose metadata is being requested. … … 1368 1368 * Update a piece of blog meta. 1369 1369 * 1370 * @global object $wpdb WordPress database accessobject.1370 * @global wpdb $wpdb WordPress database object. 1371 1371 * 1372 1372 * @param int $blog_id ID of the blog whose metadata is being updated.
Note: See TracChangeset
for help on using the changeset viewer.