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. Built from https://develop.svn.wordpress.org/trunk@27409 git-svn-id: http://core.svn.wordpress.org/trunk@27256 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
6074dfa272
commit
e9b64fb76d
|
@ -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 ) {
|
||||
|
|
Loading…
Reference in New Issue