Changeset 36321 for trunk/src/wp-includes/post-template.php
- Timestamp:
- 01/15/2016 07:27:57 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/post-template.php
r36319 r36321 381 381 * 382 382 * @since 1.2.0 383 * @since 4.5.0 Introduced the `$post` parameter. 383 384 * 384 385 * @param string $post_excerpt The post excerpt. 386 * @param WP_Post $post Post object. 385 387 */ 386 return apply_filters( 'get_the_excerpt', $post->post_excerpt );388 return apply_filters( 'get_the_excerpt', $post->post_excerpt, $post ); 387 389 } 388 390
Note: See TracChangeset
for help on using the changeset viewer.