C4F Textarea Toolbar installation is extremely easy:
/wp-content/plugins/ directory<?php C4F_TextareaToolbar(); ?> in your template (Optional but Recommended)
<?php if (function_exists("C4F_TextareaToolbar")) C4F_TextareaToolbar(); ?>You can set up C4F Textarea Toolbar also through parameters in an array inside the function call. The function accepts the following parameters:
showhat (defines which toolbar is displayed)credit (defines if the credit line is displayed)The credit parameter accepts a true/false value, while the showhat parameter accepts three values:
all (displays both toolbars)only_controls (displays only the markup toolbar)only_smilies (displays only the emoticon toolbar)Here are a few examples of how the parameters can be defined inside the function:
<?php C4F_TextareaToolbar(array("showhat" => "only_smilies", "credit" => true)); ?><?php
$params = array("showhat" => "only_controls", "credit" => false);
C4F_TextareaToolbar($params);
?>Note that by using parameters inside the function you will override the option panel's settings.




