Our item has been soft reject
Comment reviewer:
-
Don’t combine libraries. This prevents deregistering and can cause double loading issues: https://envato.d.pr/9A1A6R
-
Use wp_kses_post sparingly, this function is expensive and slow. If you want to use KSES you should use wp_kses() and pass an $allowed_html array as seen in Codex.
You can also use thewp_kses_allowed_html
filter hook to add your custom contexts then use wp_kses like so: `echo wp_kses($string, ‘social’)
Please Tell us, how to fix it?