Replace content in WordPress on the fly

Replace content in WordPress on the fly:

function replace_content_on_the_fly($text){
	$replace = array(
		// 'words to find' => 'replace with this'
		'wordpress' => '<a href="http://www.wordpress.org/">wordpress</a>',
		'google' => '<a href="http://www.google.com/">excerpt</a>',
		'function' => '<a href="#">function</a>'
	);
	$text = str_replace(array_keys($replace), $replace, $text);
	return $text;
}
add_filter('the_content', 'replace_content_on_the_fly');
add_filter('the_excerpt', 'replace_content_on_the_fly');
VN:F [1.9.17_1161]
Rating: 0 (from 0 votes)

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="" highlight="">