(boundary)_post_rel_link filter-hookWP 1.0

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

get_boundary_post_rel_link()
(boundary)_post_rel_link
wp-includes/deprecated.php 2712
return apply_filters( "{$boundary}_post_rel_link", $link );

Where the hook is used in WordPress

Usage not found.