Commit e266074f authored by Scott Taylor's avatar Scott Taylor
Browse files

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


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


git-svn-id: https://core.svn.wordpress.org/trunk@27048 1a063a9b-81f0-0310-95a4-ce76da25c4cd
parent 10897cfe
Loading
Loading
Loading
Loading
+0 −13
Original line number Diff line number Diff line
@@ -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.
 *