Last active
August 29, 2015 13:56
-
-
Save KoenRijpstra/9344063 to your computer and use it in GitHub Desktop.
Disable pods_meta_handler
This file contains 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 | |
function my_pods_meta_handler() { | |
return false; | |
} | |
add_filter( 'pods_meta_handler', 'my_pods_meta_handler' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment