Adding a form at the end of the content
If I understand what you are doing, and the problem you are having, the first thing I’d try is to add your the_content filter with a large priority number so that it runs late, and hopefully after the other formatting filters. add_filter(‘the_content’,’your_callback’,100); If that doesn’t do it you may have to remove and reorder some … Read more