IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
|
| 380 | 380 | * Filter the retrieved post excerpt. |
| 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 WP_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 | |
| 389 | 391 | /** |