|
Q:
Wordpress is adding additional break tags in the GoldenCAN resulting HTML?
If you are using PHP Getdata code with Wordpress you might be facing problem in displaying store contents properly. This is because Wordpress is adding extra break tags in the GoldenCAN resulting HTML.
In order to solve the issue just add the following line at the end of your GoldenCAN PHP Code, before the php closing tag “?>”.
Code:
remove_filter('the_content', 'wpautop');
|
|