Skip to content

Commit

Permalink
Framework: Fix typo for removing excerpt block stripping (#9093)
Browse files Browse the repository at this point in the history
  • Loading branch information
aduth authored Aug 17, 2018
1 parent 0c36e7f commit b978aa8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/blocks.php
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ function strip_dynamic_blocks_add_filter( $text ) {
add_filter( 'get_the_excerpt', 'strip_dynamic_blocks_add_filter', 9 ); // Before wp_trim_excerpt().

/**
* Adds the content filter to strip dynamic blocks from excerpts.
* Removes the content filter to strip dynamic blocks from excerpts.
*
* It's a bit hacky for now, but once this gets merged into core the function
* can just be called in `wp_trim_excerpt()`.
Expand All @@ -267,4 +267,4 @@ function strip_dynamic_blocks_remove_filter( $text ) {

return $text;
}
add_filter( 'wp_trim_excerpt', 'strip_dynamic_blocks_add_filter', 0 ); // Before all other.
add_filter( 'wp_trim_excerpt', 'strip_dynamic_blocks_remove_filter', 0 ); // Before all other.

0 comments on commit b978aa8

Please sign in to comment.