Make WordPress Core


Ignore:
Timestamp:
02/28/2016 06:15:42 PM (9 years ago)
Author:
DrewAPicture
Message:

Docs: Add missing documentation for the $title parameter in the DocBlock for the deprecated parent_post_rel_link().

See #32246.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/deprecated.php

    r36748 r36753  
    27342734 * @deprecated 3.3.0
    27352735 *
    2736  * @param string $title Optional. Link title format.
     2736 * @param string $title Optional. Link title format. Default '%title'.
    27372737 * @return string
    27382738 */
    2739 function get_parent_post_rel_link($title = '%title') {
     2739function get_parent_post_rel_link( $title = '%title' ) {
    27402740    _deprecated_function( __FUNCTION__, '3.3' );
    27412741
     
    27642764 * @since 2.8.0
    27652765 * @deprecated 3.3.0
    2766  */
    2767 function parent_post_rel_link($title = '%title') {
     2766 *
     2767 * @param string $title Optional. Link title format. Default '%title'.
     2768 */
     2769function parent_post_rel_link( $title = '%title' ) {
    27682770    _deprecated_function( __FUNCTION__, '3.3' );
    27692771
Note: See TracChangeset for help on using the changeset viewer.