(boundary)_post_rel_link
Usage
add_filter( '(boundary)_post_rel_link', 'wp_kama_boundary_post_rel_link_filter' );
/**
* Function for `(boundary)_post_rel_link` filter-hook.
*
* @param $link
*
* @return
*/
function wp_kama_boundary_post_rel_link_filter( $link ){
// filter...
return $link;
}
- $link
- -
Where the hook is called
(boundary)_post_rel_link
wp-includes/deprecated.php 2712
return apply_filters( "{$boundary}_post_rel_link", $link );