Twenty Eleven: use `get_content_url()` instead of `get_the_post_format_url()`. Fixes #23618.

git-svn-id: https://develop.svn.wordpress.org/trunk@24434 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Lance Willett 2013-06-18 21:40:14 +00:00
parent 443609fcab
commit f13425deca
1 changed files with 4 additions and 1 deletions

View File

@ -462,10 +462,13 @@ endif; // twentyeleven_content_nav
* Return the first link from the post content. If none found, the
* post permalink is used as a fallback.
*
* @uses get_content_url() to get the first URL from the post content.
*
* @return string
*/
function twentyeleven_get_first_url() {
$has_url = function_exists( 'get_the_post_format_url' ) ? get_the_post_format_url() : false;
$content = get_the_content();
$has_url = function_exists( 'get_content_url' ) ? get_content_url( $content ) : false;
if ( ! $has_url )
$has_url = twentyeleven_url_grabber();