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
// common keys -- could be built using a seperate query ## | |
\add_filter( 'q/eud/admin/meta_keys_common', [ get_class(), 'meta_keys_common' ], 10, 1 ) | |
/** | |
* Return list of commmon keys | |
* | |
* @since 2.0.0 | |
*/ | |
public static function meta_keys_common() | |
{ | |
// common keys ## | |
$array = [ | |
'example_usermeta_key', | |
'first_name', | |
'q_' | |
]; | |
// return ## | |
return $array; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment