Remove code from a previous patch. See [27188].

Built from https://develop.svn.wordpress.org/trunk@27189


git-svn-id: http://core.svn.wordpress.org/trunk@27048 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor 2014-02-17 22:46:13 +00:00
parent ca4045ce76
commit 03d54a0ac7

View File

@ -68,19 +68,6 @@ function permalink_anchor( $mode = 'id' ) {
}
}
/**
* Alias for get_permalink()
*
* @since 3.9.0
*
* @param int|WP_Post $id Optional. Post ID or post object, defaults to the current post.
* @param bool $leavename Optional. Whether to keep post name or page name, defaults to false.
* @return string|bool The permalink URL or false if post does not exist.
*/
function get_the_permalink( $id = 0, $leavename = false ) {
return get_permalink( $id, $leavename );
}
/**
* Retrieve full permalink for current post or post ID.
*