Skip to content

Commit

Permalink
Added example usage
Browse files Browse the repository at this point in the history
  • Loading branch information
dmhendricks committed Jul 19, 2017
1 parent 3f181e1 commit b8722fb
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ A simple [mu-plugin](https://codex.wordpress.org/Must_Use_Plugins) that buffers

[Original code](http://stackoverflow.com/a/22818089/3799374) by [kfriend](https://stackoverflow.com/users/419673/kfriend) on Stack Overflow. Licensed as GPL because it is a WordPress derivative.

### Example Usage

```
add_filter( 'final_output', function($output) {
return str_replace('foo', 'bar', $output);
});
```

## Changelog

**1.0.2 (master)**
Expand Down

0 comments on commit b8722fb

Please sign in to comment.