wpseek.com
A WordPress-centric search engine for devs and theme authors
get_url_in_content › WordPress Function
Since3.6.0
Deprecatedn/a
› get_url_in_content ( $content )
| Parameters: |
|
| Returns: |
|
| Defined at: |
|
| Codex: |
Extracts and returns the first URL from passed content.
Related Functions: get_the_content, get_user_count, get_shortcode_tags_in_content, get_link_to_edit, get_media_embedded_in_content
Source
function get_url_in_content( $content ) {
if ( empty( $content ) ) {
return false;
}
$processor = new WP_HTML_Tag_Processor( $content );
while ( $processor->next_tag( 'A' ) ) {
$href = $processor->get_attribute( 'href' );
if ( is_string( $href ) && '' !== $href ) {
return sanitize_url( $href );
}
}
return false;
}