Version: 3.2.2 Replace text with other text. Handy for creating shortcuts to common, lengthy, or frequently changing text/HTML, or for smilies.
No. The plugin filters post content on-the-fly.
Yes, if they include strings that you've now defined as shortcuts.
By default, the plugin filters the post content, post excerpt fields, widget text, and optionally comments and comment excerpts. You can use the 'c2c_text_replace_filters' filter to modify that behavior (see Filters section).
You can add to the list of filters that get text replacements using something like this (added to your theme's functions.php file, for instance):
add_filter( 'c2c_text_replace_filters', 'more_text_replacements' );
function more_text_replacements( $filters ) {
$filters[] = 'the_title'; // 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_text_replace_case_sensitive' filter (see Filters section).
Rest assured search engines will see those posts since they only ever see the posts after the shortcuts have been replaced. However, WordPress's search function searches the database directly, where only the shortcut exists, so WordPress doesn't know about the replacement text you've defined.
Requires: 3.1 or higher
Compatible up to: 3.3.2
Last Updated: 2012-1-31
Downloads: 14,015
Got something to say? Need help?