I have been going crazy trying to google up what these globals are. What are allowedposttags and allowedtags? What is the difference between the two? Is there a list of all WP Globals and an explanation of what they are?
For MCE Editor – to allow users not logged in to use lists and underline + strikethrough add following:
add_action('init', 'my_html_tags_code', 10);
function my_html_tags_code() {
global $allowedposttags, $allowedtags;
//$allowedposttags["ol"] = array();
//$allowedposttags["ul"] = array();
$allowedtags["ol"] = array();
$allowedtags["ul"] = array();
$allowedtags["li"] = array();
$allowedtags["span"] = array( "style" => array() );
}
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
These are arrays that are used by the wp_kses library. Basically they are white lists of html tags and attributes that WordPress allows in posts and comments. If memory serves correctly, “allowedposttags” is used for sanitizing post_content while “allowedtags” is used for comments.
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0