this line
add_action('the_content', array(&$this, 'do_the_content'), 10);
messes up TheProfessional theme and probably many others :o took me a whole day to figure it was this line of code!
this line
add_action('the_content', array(&$this, 'do_the_content'), 10);
messes up TheProfessional theme and probably many others :o took me a whole day to figure it was this line of code!
this is not just with elegant themes i found this is a common mistake by plugin makers more is explained here. http://pippinsplugins.com/playing-nice-with-the-content-filter/
It's not a mistake by plugin developers, but rather a mistake by theme developers that has a significantly negative impact on plugin developers.
You must log in to post.