wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_get_entity_view_config_hook_name › WordPress Function

Seit7.1.0
Veraltetn/v
wp_get_entity_view_config_hook_name ( $kind, $name )
Parameter: (2)
  • (string) $kind The entity kind (e.g. `postType`).
    Erforderlich: Ja
  • (string) $name The entity name (e.g. `page`).
    Erforderlich: Ja
Gibt zurück:
  • (string) The filter name.
Definiert in:
Codex:

Builds the name of the dynamic filter that provides the view configuration for an entity.

The entity kind and name are embedded in the hook name lowercased, so the hook follows the WordPress convention of lowercase hook names regardless of how the entity identifiers are spelled: the postType/page entity maps to the get_entity_view_config_posttype_page hook.


Quellcode

function wp_get_entity_view_config_hook_name( $kind, $name ) {
	return strtolower( "get_entity_view_config_{$kind}_{$name}" );
}