Plugin Reviews

Rich Text Tags

The Rich Text Tags Plugin allows you to edit tag, category, and taxonomy descriptions using WordPress' built in WYSIWYG editor.

Average Rating
4 stars
4.4 out of 5 stars
5 stars
No paragraphs and line break
By , for WP 3.5.1

Hi friends if there is no new lines formated you can use for your variable PHP Autoformat Paragraph tags.

See here: http://stackoverflow.com/questions/5240729/php-autoformat-paragraph-tags

$text = "hello, I am text

and this is another paragraph, please do some cool
stuff with this (this is after a  line break)

last apragrahp...";

$text = str_replace("\r\n","\n",$text);

$paragraphs = preg_split("/[\n]{2,}/",$text);
foreach ($paragraphs as $key => $p) {
    $paragraphs[$key] = "<p>".str_replace("\n","<br />",$paragraphs[$key])."</p>";
}

$text = implode("", $paragraphs);

echo $text;
5 stars
Wow... it enabled Ultimate TinyMCE everywhere it should
By , for WP 3.5.1

Had spent some time trying to enable Ultimate TinyMCE for taxonomy and category descriptions editing... this did it, de facto!

Two thumbs up... Thanks a lot

Franck

You must log in to submit a review. You can also log in or register using the form near the top of this page.