So basically, I am using the Wordpress editor on my site and I do not want my users posting ANY HTML in it at all since it can cause some problems.
My Wordpress Editor is currently like this:
<?php wp_editor( get_the_content() , 'post_content'); ?>
In simple terms, I would basically like it to just look like a simple HTML textarea
, and strip all HTML tags (like what the PHP function strip_tags
does. Although, I cannot get this PHP functionality working with a simple textarea... Not to sure why, just a coding problem with my theme.
So yes, is something like this possible?