diff --git a/src/wp-includes/link-template.php b/src/wp-includes/link-template.php index c3e7e69031..d6dae4876d 100644 --- a/src/wp-includes/link-template.php +++ b/src/wp-includes/link-template.php @@ -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. *