Changeset 9243 for trunk/wp-includes/functions.php
- Timestamp:
- 10/18/2008 08:46:30 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/functions.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r9106 r9243 647 647 * Saves and restores user interface settings stored in a cookie. 648 648 * 649 * Checks if the current user-settings cookie is updated and stores it. When no 650 * cookie exists (different browser used), adds the last saved cookie restoring 651 * the settings. 652 * 649 653 * @package WordPress 650 654 * @subpackage Option 651 655 * @since 2.7.0 652 *653 * Checks if the current user-settings cookie is updated and stores it.654 * When no cookie exists (different browser used), adds the last saved cookie restoring the settings.655 656 */ 656 657 function wp_user_settings() { … … 691 692 * @package WordPress 692 693 * @subpackage Option 693 * @since 2.7.0 694 * 694 * @since 2.7.0 695 * 695 696 * @param string $name The name of the setting. 696 697 * @param string $default Optional default value to return when $name is not set. … … 707 708 * Delete user interface settings. 708 709 * 710 * Deleting settings would reset them to the defaults. 711 * 709 712 * @package WordPress 710 713 * @subpackage Option 711 714 * @since 2.7.0 712 *713 * Deleting settings would reset them to the defaults.714 715 * 715 716 * @param mixed $names The name or array of names of the setting to be deleted. … … 764 765 } 765 766 767 /** 768 * Delete the user settings of the current user. 769 * 770 * @package WordPress 771 * @subpackage Option 772 * @since 2.7.0 773 */ 766 774 function delete_all_user_settings() { 767 775 if ( ! $user = wp_get_current_user() )
Note: See TracChangeset
for help on using the changeset viewer.