friend_post_edit_link - akirk/friends GitHub Wiki

Allow overriding the link for editing friend posts.

By default on the Frontend, a post cannot be edited because $new_link is false.

Example

add_filter( 'friend_post_edit_link', function( $link, $original_link ) {
    if ( ! $link ) {
         $link = $original_link; // always allow editing.
     }
     return $link;
}, 10, 2 );

Parameters

  • $new_link
  • $link

Files

apply_filters( 'friend_post_edit_link', $new_link, $link )

← All Hooks