Created
January 7, 2014 18:55
-
-
Save alexkingorg/8304582 to your computer and use it in GitHub Desktop.
Register all WP postmeta keys using the [CF Revision Manager](https://github.com/crowdfavorite/wp-revision-manager)
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 | |
global $wpdb; | |
$keys = $wpdb->get_col(" | |
SELECT DISTINCT meta_key | |
FROM $wpdb->postmeta | |
"); | |
foreach ($keys as $key) { | |
cfr_register_metadata($key); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment