wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



get_registered_meta_keys › WordPress Function

Desde4.6.0
Obsoleton/a
get_registered_meta_keys ( $object_type, $object_subtype = '' )
Parâmetros: (2)
  • (string) $object_type Type of object metadata is for. Accepts 'post', 'comment', 'term', 'user', or any other object type with an associated meta table.
    Required: Yes
  • (string) $object_subtype Optional. The subtype of the object type. Default empty string.
    Required: No
    Padrão: (empty)
Retorna:
  • (array[]) List of registered metadata args, keyed by their meta keys.
Definido em:
Codex:
Log de mudanças:
  • 4.9.8

Retrieves a list of registered metadata args for an object type, keyed by their meta keys.



Fonte

function get_registered_meta_keys( $object_type, $object_subtype = '' ) {
	global $wp_meta_keys;

	if ( ! is_array( $wp_meta_keys ) || ! isset( $wp_meta_keys[ $object_type ] ) || ! isset( $wp_meta_keys[ $object_type ][ $object_subtype ] ) ) {
		return array();
	}

	return $wp_meta_keys[ $object_type ][ $object_subtype ];
}