wpseek.com
A WordPress-centric search engine for devs and theme authors
_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
Since4.7.0
Deprecatedn/a
› _get_component_from_parsed_url_array ( $url_parts, $component = -1 )
Access: |
|
Parameters: (2) |
|
Links: | |
Returns: |
|
Defined at: |
|
Codex: |
Retrieves a specific component from a parsed URL array.
Source
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; } }