index_rel_link filter-hookWP 1.0

Usage

add_filter( 'index_rel_link', 'wp_kama_index_rel_link_filter' );

/**
 * Function for `index_rel_link` filter-hook.
 * 
 * @param  $link 
 *
 * @return 
 */
function wp_kama_index_rel_link_filter( $link ){

	// filter...
	return $link;
}
$link
-

Where the hook is called

get_index_rel_link()
index_rel_link
wp-includes/deprecated.php 2743
return apply_filters( "index_rel_link", $link );

Where the hook is used in WordPress

Usage not found.