wp_insert_post -> post_content not showing
OK, SO this is what I found out, the data <object>…</object> was the culprit. WordPress sanitizes the input before committing to the database. Other non allowed tags include <embed>…</embed> I’ve seen this solution online $postData = array( … ‘filter’=>true … ); However, some people say that’s a security flaw. I dug a little deeper and … Read more