Version: 1.0 Automatically hyperlink words or phrases in your posts.
No. The plugin filters post content on-the-fly.
Yes, if they include strings that you've now defined with links.
By default, the plugin filters the post content, post excerpt fields, widget text, and optionally comments and comment excerpts. You can use the 'c2c_linkify_text_filters' filter to modify that behavior (see Filters section).
You can add to the list of filters that get text linkified using something like this (added to your theme's functions.php file, for instance):
// Enable text linkification for custom fields
add_filter( 'c2c_linkify_text_filters', 'more_text_replacements' );
function more_text_replacements( $filters ) {
$filters[] = 'the_meta'; // Here you could put in the name of any filter you want
return $filters;
}
By default, yes. There is a setting you can change to make it case insensitive. Or you can use the 'c2c_linkify_text_case_sensitive' filter (see Filters section).
Already linked text will not get linked again by this plugin (regardless of what the link may be).
Requires: 3.1 or higher
Compatible up to: 3.3.2
Last Updated: 2011-12-5
Downloads: 2,324
Got something to say? Need help?