wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
_get_component_from_parsed_url_array is private and should not be used in themes or plugins directly.
_get_component_from_parsed_url_array › WordPress Function
Seit4.7.0
Veraltetn/v
› _get_component_from_parsed_url_array ( $url_parts, $component = -1 )
Zugriff: |
|
Parameter: (2) |
|
Links: | |
Gibt zurück: |
|
Definiert in: |
|
Codex: |
Retrieves a specific component from a parsed URL array.
Ähnliche Funktionen: get_comment_author_url, wp_get_attachment_image_url, get_comment_author_url_link, _get_comment_reply_id, get_post_embed_url
Quellcode
function _get_component_from_parsed_url_array( $url_parts, $component = -1 ) { if ( -1 === $component ) { return $url_parts; } $key = _wp_translate_php_url_constant_to_key( $component ); if ( false !== $key && is_array( $url_parts ) && isset( $url_parts[ $key ] ) ) { return $url_parts[ $key ]; } else { return null; } }