Changeset 55123
- Timestamp:
- 01/24/2023 12:55:14 PM (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-blogs.php
r55092 r55123 13 13 14 14 /** 15 * Update the last_updated field for the current site.15 * Updates the last_updated field for the current site. 16 16 * 17 17 * @since MU (3.0.0) … … 32 32 33 33 /** 34 * Get a full blog URL, given a blog ID.34 * Gets a full blog URL, given a blog ID. 35 35 * 36 36 * @since MU (3.0.0) … … 53 53 54 54 /** 55 * Get a full blog URL, given a blog name.56 * 57 * @since MU (3.0.0) 58 * 59 * @param string $blogname The (subdomain or directory) name55 * Gets a full blog URL, given a blog name. 56 * 57 * @since MU (3.0.0) 58 * 59 * @param string $blogname Name of the subdomain or directory. 60 60 * @return string 61 61 */ … … 114 114 115 115 /** 116 * Retrieve the details for a blog from the blogs table and blog options.116 * Retrieves the details for a blog from the blogs table and blog options. 117 117 * 118 118 * @since MU (3.0.0) … … 274 274 275 275 /** 276 * Clear the blog details cache.276 * Clears the blog details cache. 277 277 * 278 278 * @since MU (3.0.0) … … 290 290 291 291 /** 292 * Update the details for a blog. Updatesthe blogs table for a given blog ID.292 * Updates the details for a blog and the blogs table for a given blog ID. 293 293 * 294 294 * @since MU (3.0.0) … … 338 338 339 339 /** 340 * Retrieve option value for a given blog id based on name of option.340 * Retrieves option value for a given blog id based on name of option. 341 341 * 342 342 * If the option does not exist or does not have a value, then the return value … … 383 383 384 384 /** 385 * Add a new option for a given blog ID.385 * Adds a new option for a given blog ID. 386 386 * 387 387 * You do not need to serialize values. If the value needs to be serialized, then … … 447 447 448 448 /** 449 * Update an option for a particular blog.449 * Updates an option for a particular blog. 450 450 * 451 451 * @since MU (3.0.0) … … 476 476 477 477 /** 478 * Switch the current blog.478 * Switches the current blog. 479 479 * 480 480 * This function is useful if you need to pull posts, or other information, … … 589 589 590 590 /** 591 * Restore the current blog, after calling switch_to_blog().591 * Restores the current blog, after calling switch_to_blog(). 592 592 * 593 593 * @see switch_to_blog() … … 702 702 703 703 /** 704 * Determines if switch_to_blog() is in effect 704 * Determines if switch_to_blog() is in effect. 705 705 * 706 706 * @since 3.5.0 … … 715 715 716 716 /** 717 * Check if a particular blog is archived.717 * Checks if a particular blog is archived. 718 718 * 719 719 * @since MU (3.0.0) … … 727 727 728 728 /** 729 * Update the 'archived' status of a particular blog.729 * Updates the 'archived' status of a particular blog. 730 730 * 731 731 * @since MU (3.0.0) … … 741 741 742 742 /** 743 * Update a blog details field.743 * Updates a blog details field. 744 744 * 745 745 * @since MU (3.0.0) … … 782 782 783 783 /** 784 * Get a blog details field.784 * Gets a blog details field. 785 785 * 786 786 * @since MU (3.0.0) … … 804 804 805 805 /** 806 * Get a list of most recently updated blogs.806 * Gets a list of most recently updated blogs. 807 807 * 808 808 * @since MU (3.0.0) … … 918 918 919 919 /** 920 * Count number of sites grouped by site status.920 * Counts number of sites grouped by site status. 921 921 * 922 922 * @since 5.3.0
Note: See TracChangeset
for help on using the changeset viewer.