link_title filter-hookWP 2.2.0

Filters the OPML outline link title text.

Usage

add_filter( 'link_title', 'wp_kama_link_title_filter' );

/**
 * Function for `link_title` filter-hook.
 * 
 * @param string $title The OPML outline title text.
 *
 * @return string
 */
function wp_kama_link_title_filter( $title ){

	// filter...
	return $title;
}
$title(string)
The OPML outline title text.

Changelog

Since 2.2.0 Introduced.

Where the hook is called

In file: /wp-links-opml.php
link_title
wp-links-opml.php 81
$title = apply_filters( 'link_title', $bookmark->link_name );

Where the hook is used in WordPress

Usage not found.