-
Notifications
You must be signed in to change notification settings - Fork 16
friend_post_edit_link
Alex Kirk edited this page Aug 3, 2023
·
15 revisions
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 );