mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-22 08:11:52 +01:00
Allow the text parameter in wp_trim_excerpt() to be omitted altogether, instead of requiring a blank string. props SergeyBiryukov. fixes #17492
git-svn-id: http://svn.automattic.com/wordpress/trunk@18824 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
75432d53b0
commit
33c150d3de
@ -1851,10 +1851,10 @@ function human_time_diff( $from, $to = '' ) {
|
||||
*
|
||||
* @since 1.5.0
|
||||
*
|
||||
* @param string $text The excerpt. If set to empty an excerpt is generated.
|
||||
* @param string $text Optional. The excerpt. If set to empty, an excerpt is generated.
|
||||
* @return string The excerpt.
|
||||
*/
|
||||
function wp_trim_excerpt($text) {
|
||||
function wp_trim_excerpt($text = '') {
|
||||
$raw_excerpt = $text;
|
||||
if ( '' == $text ) {
|
||||
$text = get_the_content('');
|
||||
|
Loading…
Reference in New Issue
Block a user