You appear to be a bot. Output may be restricted
Description
Return the post URL.
Falls back to the post permalink if no URL is found in the post.
Usage
$string = twentyfifteen_get_link_url();
Parameters
Returns
string The Link format URL.
Source
File name: twentyfifteen/inc/template-tags.php
Lines:
1 to 5 of 5
function twentyfifteen_get_link_url() { $has_url = get_url_in_content( get_the_content() ); return $has_url ? $has_url : apply_filters( 'the_permalink', get_permalink() ); }