Changeset 52999 for trunk/src/wp-admin/includes/template.php
- Timestamp:
- 03/28/2022 09:43:57 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/template.php
r52978 r52999 20 20 21 21 /** 22 * Output an unordered list of checkbox input elements labeled with category names.22 * Outputs an unordered list of checkbox input elements labeled with category names. 23 23 * 24 24 * @since 2.5.1 … … 53 53 54 54 /** 55 * Output an unordered list of checkbox input elements labelled with term names.55 * Outputs an unordered list of checkbox input elements labelled with term names. 56 56 * 57 57 * Taxonomy-independent version of wp_category_checklist(). … … 192 192 193 193 /** 194 * Retrieve a list of the most popular terms from the specified taxonomy.194 * Retrieves a list of the most popular terms from the specified taxonomy. 195 195 * 196 196 * If the $echo argument is true then the elements for a list of checkbox … … 532 532 533 533 /** 534 * Output 'undo move to Trash' text for comments534 * Outputs 'undo move to Trash' text for comments. 535 535 * 536 536 * @since 2.9.0 … … 775 775 776 776 /** 777 * Print out HTML form date elements for editing post or comment publish date.777 * Prints out HTML form date elements for editing post or comment publish date. 778 778 * 779 779 * @since 0.71 … … 870 870 871 871 /** 872 * Print out option HTML elements for the page templates drop-down.872 * Prints out option HTML elements for the page templates drop-down. 873 873 * 874 874 * @since 1.5.0 … … 890 890 891 891 /** 892 * Print out option HTML elements for the page parents drop-down.892 * Prints out option HTML elements for the page parents drop-down. 893 893 * 894 894 * @since 1.5.0 … … 928 928 929 929 /** 930 * Print out option HTML elements for role selectors.930 * Prints out option HTML elements for role selectors. 931 931 * 932 932 * @since 2.1.0 … … 1124 1124 1125 1125 /** 1126 * Function that renders a "fake" meta box with an information message,1126 * Renders a "fake" meta box with an information message, 1127 1127 * shown on the block editor, when an incompatible meta box is found. 1128 1128 * … … 1541 1541 1542 1542 /** 1543 * Add a new section to a settings page.1543 * Adds a new section to a settings page. 1544 1544 * 1545 1545 * Part of the Settings API. Use this to define new settings sections for an admin page. … … 1599 1599 1600 1600 /** 1601 * Add a new field to a section of a settings page.1601 * Adds a new field to a section of a settings page. 1602 1602 * 1603 1603 * Part of the Settings API. Use this to define a settings field that will show … … 1709 1709 1710 1710 /** 1711 * Print out the settings fields for a particular settings section.1711 * Prints out the settings fields for a particular settings section. 1712 1712 * 1713 1713 * Part of the Settings API. Use this in a settings page to output … … 1752 1752 1753 1753 /** 1754 * Register a settings error to be displayed to the user.1754 * Registers a settings error to be displayed to the user. 1755 1755 * 1756 1756 * Part of the Settings API. Use this to show messages to users about settings validation … … 1788 1788 1789 1789 /** 1790 * Fetch settings errors registered by add_settings_error().1790 * Fetches settings errors registered by add_settings_error(). 1791 1791 * 1792 1792 * Checks the $wp_settings_errors array for any errors declared during the current … … 1859 1859 1860 1860 /** 1861 * Display settings errors registered by add_settings_error().1861 * Displays settings errors registered by add_settings_error(). 1862 1862 * 1863 1863 * Part of the Settings API. Outputs a div for each error retrieved by … … 1979 1979 1980 1980 /** 1981 * Get the post title.1981 * Gets the post title. 1982 1982 * 1983 1983 * The post title is fetched and if it is blank then a default string is … … 2010 2010 2011 2011 /** 2012 * Generic Iframe header for use with Thickbox 2012 * Generic Iframe header for use with Thickbox. 2013 2013 * 2014 2014 * @since 2.7.0 … … 2098 2098 2099 2099 /** 2100 * Generic Iframe footer for use with Thickbox 2100 * Generic Iframe footer for use with Thickbox. 2101 2101 * 2102 2102 * @since 2.7.0 … … 2133 2133 2134 2134 /** 2135 * Function to echo or returnthe post states as HTML.2135 * Echoes or returns the post states as HTML. 2136 2136 * 2137 2137 * @since 2.7.0 … … 2366 2366 2367 2367 /** 2368 * Test support for compressing JavaScript from PHP2368 * Tests support for compressing JavaScript from PHP. 2369 2369 * 2370 2370 * Outputs JavaScript that tests if compression from PHP works as expected … … 2456 2456 2457 2457 /** 2458 * Returns a submit button, with provided text and appropriate class 2458 * Returns a submit button, with provided text and appropriate class. 2459 2459 * 2460 2460 * @since 3.1.0 … … 2559 2559 2560 2560 /** 2561 * Convert a screen string to a screen object2561 * Converts a screen string to a screen object. 2562 2562 * 2563 2563 * @since 3.0.0 … … 2609 2609 2610 2610 /** 2611 * Output a HTML element with a star rating for a given rating.2611 * Outputs a HTML element with a star rating for a given rating. 2612 2612 * 2613 2613 * Outputs a HTML element with the star rating exposed on a 0..5 scale in
Note: See TracChangeset
for help on using the changeset viewer.