I have a custom post textbox that I want to sanitize using wp_kses before I update my post meta.
I was looking for examples of common $allowed settings, but I have only seen this example:
$allowed = array(
'a' => array( // on allow a tags
'href' => array() // and those anchors can only have href attribute
)
);
What is a typical wp_kses $allowed setting? Can someone provide an example of what they normally filter for?
