This is a outputs textfield that is mandatory to be filled in but I want it to be optional.
Thank you for you attention and help.
<label for="content-text-ta" class="required">Post Text (Required):
<br/>
</label>
<small>Allowable Tags: <p><b><em><u><strong><a><img><table><tr><td><blockquote><ul><ol><li><br><sup></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>
Would it be this?
<label for="content-text-ta" class="required">Post Text (Required):
<br/>
</label>
<small>Allowable Tags: <p><b><em><u><strong><a><img><table><tr><td><blockquote><ul><ol><li><br><sup></small>
<br/>
<textarea title="Post Text" rows="10" cols="40" name="content-text-ta" id="content-text-ta" ><?php {
echo $post_args["content-text-ta"];
} ?></textarea>