Make WordPress Core

Ticket #41653: 41653.diff

File 41653.diff, 1.2 KB (added by audrasjb, 7 years ago)

Patch first proposition for #41653

  • src/wp-includes/post-template.php

    diff --git a/src/wp-includes/post-template.php b/src/wp-includes/post-template.php
    index 3734373..dd67427 100644
    a b function the_meta() { 
    10231023                                continue;
    10241024                        $values = array_map('trim', get_post_custom_values($key));
    10251025                        $value = implode($values,', ');
     1026                        $separator = _x( ': ', 'Separator between key and value in the_meta()' );
    10261027
    10271028                        /**
    10281029                         * Filters the HTML output of the li element in the post custom fields list.
    10291030                         *
    10301031                         * @since 2.2.0
    10311032                         *
    1032                          * @param string $html  The HTML output for the li element.
    1033                          * @param string $key   Meta key.
    1034                          * @param string $value Meta value.
     1033                         * @param string $html          The HTML output for the li element.
     1034                         * @param string $key           Meta key.
     1035                         * @param string $separator     Separator.
     1036                         * @param string $value         Meta value.
    10351037                         */
    1036                         echo apply_filters( 'the_meta_key', "<li><span class='post-meta-key'>$key:</span> $value</li>\n", $key, $value );
     1038                        echo apply_filters( 'the_meta_key', "<li><span class='post-meta-key'>{$key}{$separator}</span>{$value}</li>\n", $key, $separator, $value);
    10371039                }
    10381040                echo "</ul>\n";
    10391041        }