Slide 11
Slide 11 text
Lambdas & Closures
// Lambdas
add_action( 'the_content', function( $content ){
return $content.'Final Note';
});
// Closures
$note = 'Final Note';
add_action( 'the_content', function($content) use($note) {
return $content.$note;
});
// anonymous functions
$func = function( $content ) { return $content.'the end';
};
add_action( 'the_content', $func );