Changeset 53715 for trunk/src/wp-includes/deprecated.php
- Timestamp:
- 07/18/2022 05:35:51 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/deprecated.php
r53685 r53715 3632 3632 * @see get_permalink() 3633 3633 * 3634 * @param int|WP_Post $post _idOptional. Post ID or WP_Post object. Default is global $post.3634 * @param int|WP_Post $post Optional. Post ID or WP_Post object. Default is global $post. 3635 3635 * @return string|false 3636 3636 */ 3637 function post_permalink( $post _id= 0 ) {3637 function post_permalink( $post = 0 ) { 3638 3638 _deprecated_function( __FUNCTION__, '4.4.0', 'get_permalink()' ); 3639 3639 3640 return get_permalink( $post _id);3640 return get_permalink( $post ); 3641 3641 } 3642 3642
Note: See TracChangeset
for help on using the changeset viewer.