Created
June 5, 2014 20:16
-
-
Save Pross/46f186579e9c7283ac7d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| * NOTE: 2 varibales passed here... | |
| */ | |
| add_filter( 'pl-area-inner-classes', 'my_classes_filter', 10, 2 ); | |
| /* | |
| * Filter function now needs 2 variables | |
| * 1st is the actual value being filtered | |
| * 2nd is the section meta data in the form of an array. | |
| */ | |
| function my_classes_filter( $classes, $meta ) { | |
| return $classes; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment