öncelikle bu plugin wordpress sitesinde normal kullanıcılara makale göndermesine olanak sağlayan bir uygulama

fakat bu uygulamada wygiwys editörü yüklenmiyor resim eklemek için, font değiştirme sola-sağa hizalama vsvs. gibi komutların küçük ikonları göstermiyor

aşağıda form'un kodu var ve ben TinyMCE gibi editörleri giydirmek istiyorum

Görsel Hali


KOD

Alıntı
<!-- Form 2 start -->
%%FORMMESSAGE%%
<!-- form start -->
<form method="post" action="http://localhost/wordpress/wp-content/plugins/tdo-mini-forms/tdomf-form-post.php" id='tdomf_form%%FORMID%%' name='tdomf_form%%FORMID%%' class='tdomf_form' >
%%FORMKEY%%
<div><input type='hidden' id='tdomf_form_id' name='tdomf_form_id' value='%%FORMID%%' /></div>
<div><input type='hidden' id='redirect' name='redirect' value='%%FORMURL%%' /></div>
<!-- widgets start -->
<!-- who-am-i start -->
<fieldset>
<legend>Who Am I</legend>
<?php if(is_user_logged_in()) { ?>
<p>You are currently logged in as %%USERNAME%%.
<?php if(current_user_can('manage_options')) { ?>
<a href='http://localhost/wordpress/wp-admin/admin.php?page=tdo-mini-forms'>You can configure this form &raquo;</a>
<?php } ?></p>
<?php } else { ?>
<p>We do not know who you are. Please supply your name and email address. Alternatively you can <a href="http://localhost/wordpress/wp-login.php?redirect_to=%%FORMURL%%">log in</a> if you have a user account or <a href="http://localhost/wordpress/wp-register.php?redirect_to=%%FORMURL%%">register</a> for a user account if you do not have one.</p>
<?php if(!isset($whoami_name) && isset($_COOKIE['tdomf_whoami_widget_name'])) {
$whoami_name = $_COOKIE['tdomf_whoami_widget_name'];
} ?>

<label for='whoami_name' class="required" >Name:
<br/>
<input type="text" value="<?php echo htmlentities($whoami_name,ENT_QUOTES,get_bloginfo( 'charset')); ?>" name="whoami_name" id="whoami_name" /> (Required)
</label>
<br/>
<br/>
<?php if(!isset($whoami_email) && isset($_COOKIE['tdomf_whoami_widget_name'])) {
$whoami_email = $_COOKIE['tdomf_whoami_widget_email'];
} ?>

<label for='whoami_email' class="required" >Email:
<br/>
<input type="text" value="<?php echo htmlentities($whoami_email,ENT_QUOTES,get_bloginfo ('charset')); ?>" name="whoami_email" id="whoami_email" /> (Required)
</label>
<br/>
<br/>
<?php if(!isset($whoami_webpage) && isset($_COOKIE['tdomf_whoami_widget_name'])) {
$whoami_webpage = $_COOKIE['tdomf_whoami_widget_webpage'];
}
if(!isset($whoami_webpage) || empty($whoami_webpage)){ $whoami_webpage = "http://"; } ?>

<label for='whoami_webpage'>Webpage:
<br/>
<input type="text" value="<?php echo htmlentities($whoami_webpage,ENT_QUOTES,get_blogin fo('charset')); ?>" name="whoami_webpage" id="whoami_webpage" />
</label>
<br/>
<br/>
<?php } ?>
</fieldset>
<!-- who-am-i end -->
<!-- content start -->
<fieldset>
<legend>Content</legend>
<?php if(isset($post_args["content-title-tf"])) {
$temp_text = $post_args["content-title-tf"];
} else {
$temp_text = "";
} ?>

<label for="content-title-tf">Post Title:
<br/>
</label>
<input type="text" title="Post Title" name="content-title-tf" id="content-title-tf" size="30" value="<?php echo htmlentities($temp_text,ENT_QUOTES,get_bloginfo('c harset')); ?>"/>
<br/><br/>
<label for="content-text-ta" class="required">Post Text (Required):
<br/>
</label>
<small>Allowable Tags: &lt;p&gt;&lt;b&gt;&lt;em&gt;&lt;u&gt;&lt;strong&gt ;&lt;a&gt;&lt;img&gt;&lt;table&gt;&lt;tr&gt;&lt;td &gt;&lt;blockquote&gt;&lt;ul&gt;&lt;ol&gt;&lt;li&g t;&lt;br&gt;&lt;sup&gt;</small>
<br/>
<textarea title="Post Text" rows="10" cols="40" name="content-text-ta" id="content-text-ta" ><?php if(isset($post_args["content-text-ta"])) {
echo $post_args["content-text-ta"];
} else { ?><?php } ?></textarea>

</fieldset>
<!-- content end -->
<!-- notifyme start -->
<?php if(tdomf_get_option_form(TDOMF_OPTION_MODERATION,$ tdomf_form_id) && !current_user_can('publish_posts') && !tdomf_current_user_default_author() && !tdomf_current_user_trusted()) { ?>
<fieldset>
<label for='notifyme'><input type='checkbox' name='notifyme' id='notifyme'<?php if(isset($notifyme)) { ?> checked <?php } ?> /> Do you wish to be notified when your post is approved (or rejected)?</label>
<?php if(tdomf_widget_notifyme_show_email_input(%%FORMID %%)) { ?>
<?php if(isset($_COOKIE['tdomf_notify_widget_email'])) { $notifyme_email = $_COOKIE['tdomf_notify_widget_email']; } ?>
<br/>
<label for='notifyme_email'>Email for notification: <input type="text" value="<?php echo htmlentities($notifyme_email,ENT_QUOTES); ?>" name="notifyme_email" id="notifyme_email" size="40" /></label>
<?php } ?>
</fieldset>
<?php } ?>
</fieldset>
<!-- notifyme end -->
<!-- widgets end -->
<!-- form buttons start -->
<table class='tdomf_buttons'><tr>
<td><input type="submit" value="Preview" name="tdomf_form%%FORMID%%_preview" id="tdomf_form%%FORMID%%_preview"/></td>
<td><input type="submit" value="Send" name="tdomf_form%%FORMID%%_send" id="tdomf_form%%FORMID%%_send"/></td>
</tr></table>
<!-- form buttons end -->
</form>
<!-- form end -->
<!-- Form 2 end -->