Introduce get_the_permalink() as an alias for get_permalink().

This better aligns it with other the_* and get_the_* function pairs.

props ericmann.
fixes #24164.


git-svn-id: https://develop.svn.wordpress.org/trunk@27409 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2014-03-05 07:23:22 +00:00
parent 57ac5b6015
commit 9cd1ad24de
1 changed files with 16 additions and 2 deletions

View File

@ -68,13 +68,27 @@ function permalink_anchor( $mode = 'id' ) {
}
}
/**
* Retrieve full permalink for current post or post ID. Alias for get_permalink().
*
* @since 3.9.0
* @see get_permalink()
*
* @param int|WP_Post $id Optional. Post ID or post object. Defaults current post.
* @param bool $leavename Optional. Whether to keep post name or page name. Default 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.
*
* @since 1.0.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.
* @param int|WP_Post $id Optional. Post ID or post object. Default current post.
* @param bool $leavename Optional. Whether to keep post name or page name. Default false.
* @return string|bool The permalink URL or false if post does not exist.
*/
function get_permalink( $id = 0, $leavename = false ) {