• I have a network of blogs. Some of them have Markdown support enabled, some do not. For the former I want the visual editor disabled, for the rest I do not. Is there a method or plugin using which I can choose to enable or disable the visual editor based on the blog I am working on rather than the setting in my user profile that is used across all of them?

Viewing 1 replies (of 1 total)
  • Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    You’d want to write a new plugin that checks if markdown is enabled and, if so, run … I THINK this:

    if ( MARKDOWN IS ENABLED) {
        add_filter('user_can_richedit' , create_function('' , 'return false;') , 50);
    }

    So that will hide the rich text editor.

Viewing 1 replies (of 1 total)
  • The topic ‘Visual editor settings per blog?’ is closed to new replies.