Skip to content

Instantly share code, notes, and snippets.

@kovshenin
Created October 16, 2012 09:20
Show Gist options
  • Save kovshenin/3898262 to your computer and use it in GitHub Desktop.
Save kovshenin/3898262 to your computer and use it in GitHub Desktop.
<?php
$a = 15;
add_filter( 'my_filter', function() use ( $a ) {
return "I'm a filter and here's a: $a";
} );
$s = apply_filters( 'my_filter', '' );
echo $s;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment