Skip to content

Instantly share code, notes, and snippets.

@Pross
Created June 5, 2014 20:16
Show Gist options
  • Select an option

  • Save Pross/46f186579e9c7283ac7d to your computer and use it in GitHub Desktop.

Select an option

Save Pross/46f186579e9c7283ac7d to your computer and use it in GitHub Desktop.
<?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