Name: Add your own QuickTags
Author: Flexer
CuteNews Compatibility: 1.3.6 - * (no incompatibility reported yet)
Description: this function is for replacing some things when u post news.
Instructions:

Open functions.inc.php and search for function replace_news ... So in this function u'll find two arrays: $find and $replace.
$find looks like:
CODE
$find= array(
"'google'i",
"'yahoo'i",
"'cutephp'i",

and $replace looks like:
CODE
$replace= array(
"http://google.com",
"http://yahoo.com",
"http://cutephp.com",

Now if you want to add your replacements just fallow the pattern:
CODE
$find= array(
"'google'i",
"'yahoo'i",
"'cutephp'i",
"'my_replacement'i",

$replace= array(
"http://google.com",
"http://yahoo.com",
"http://cutephp.com",
"This will be the replacement of my_replacement",