get_edit_post_link filter-hook . WP 2.3.0
Filters the post edit link.
Usage
add_filter( 'get_edit_post_link', 'filter_function_name_7511', 10, 3 ); function filter_function_name_7511( $link, $post_id, $context ){ // filter... return $link; }
- $link(string)
- The edit link.
- $post_id(int)
- Post ID.
- $context(string)
- The link context. If set to 'display' then ampersands are encoded.
Changelog
Since 2.3.0 | Introduced. |
Where the hook is called
get_edit_post_link
wp-includes/link-template.php 1405
return apply_filters( 'get_edit_post_link', $link, $post->ID, $context );
Where in WP core the hook is used WordPress
wp-includes/class-wp-customize-manager.php 1932
add_filter( 'get_edit_post_link', '__return_empty_string' );