• Resolved jobcrusher

    (@jobcrusher)


    I am unable to turn off wpautop site wide and it was traced to your plugin.

    Even if I do:

    remove_filter( ‘the_content’, ‘wpautop’, 99 );

    It won’t work because your plugin takes over every post here:

    function badgeos_reformat_entries:
    
    	if ( !badgeos_is_main_loop( $badge_id ) )
    		return wpautop( $content );

    Can you fix this so it doesn’t enforce wpautop for posts other than badgeos?

    https://wordpress.org/plugins/badgeos/

Viewing 1 replies (of 1 total)
  • Michael Beckwith

    (@tw2113)

    The BenchPresser

    Known gripe, but nothing has been done quite yet. The biggest thing really is the fact that we have a handful of places where we use wpautop() the function, and not the filter that gets used inside the_content filter. It’s for that reason that it’s not removable, as you’ve already noted above.

    https://github.com/opencredit/badgeos/issues/311
    https://github.com/opencredit/badgeos/issues/103

    Not sure exactly when we’ll get to it, honestly, because it’s technically not an issue, but it would be best to make consistent. I suspect at best it’d make it into the 1.5.0 release, and we’re still laying out the roadmap for future releases at the moment.

Viewing 1 replies (of 1 total)
  • The topic ‘wpautop always on for non-badgeos posts’ is closed to new replies.