Make WordPress Core

Ticket #30224: post-template-docs.diff

File post-template-docs.diff, 1.6 KB (added by welcher, 9 years ago)
  • src/wp-includes/post-template.php

     
    244244 * @global int   $multipage
    245245 *
    246246 * @param string $more_link_text Optional. Content for when there is more text.
    247  * @param bool $strip_teaser Optional. Strip teaser content before the more text. Default is false.
     247 * @param bool   $strip_teaser  Optional. Strip teaser content before the more text. Default is false.
    248248 * @return string
    249249 */
    250250function get_the_content( $more_link_text = null, $strip_teaser = false ) {
     
    316316 *
    317317 * @since 3.1.0
    318318 * @access private
    319  * @param array $match Match array from preg_replace_callback
     319 *
     320 * @param array $match Match array from preg_replace_callback.
    320321 * @return string
    321322 */
    322323function _convert_urlencoded_to_entities( $match ) {
     
    391392 *
    392393 * @since 2.7.0
    393394 *
    394  * @param string|array $class One or more classes to add to the class list.
    395  * @param int|WP_Post $post_id Optional. Post ID or post object.
     395 * @param string|array $class   One or more classes to add to the class list.
     396 * @param int|WP_Post  $post_id Optional. Post ID or post object.
    396397 */
    397398function post_class( $class = '', $post_id = null ) {
    398399        // Separates classes with a single space, collates classes for post DIV
     
    950951/**
    951952 * Display list of post custom fields.
    952953 *
     954 * @since 1.2.0
     955 *
    953956 * @internal This will probably change at some point...
    954  * @since 1.2.0
     957 *
    955958 */
    956959function the_meta() {
    957960        if ( $keys = get_post_custom_keys() ) {