Make WordPress Core


Ignore:
Timestamp:
09/08/2015 10:16:57 PM (9 years ago)
Author:
wonderboymusic
Message:

After [33843], update the location of some files in This filter is documented in docs

Props dimadin.
See #33413.

File:
1 edited

Legend:

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

    r32527 r33954  
    379379
    380380    if ( 'edit' == $context ) {
    381         /** This filter is documented in wp-includes/post.php */
     381        /** This filter is documented in wp-includes/post-functions.php */
    382382        $value = apply_filters( "edit_$field", $value, $bookmark_id );
    383383
     
    388388        }
    389389    } elseif ( 'db' == $context ) {
    390         /** This filter is documented in wp-includes/post.php */
     390        /** This filter is documented in wp-includes/post-functions.php */
    391391        $value = apply_filters( "pre_$field", $value );
    392392    } else {
    393         /** This filter is documented in wp-includes/post.php */
     393        /** This filter is documented in wp-includes/post-functions.php */
    394394        $value = apply_filters( $field, $value, $bookmark_id, $context );
    395395
Note: See TracChangeset for help on using the changeset viewer.