Screen Options WordPress WYSIWYG

The content box is in a <div> with an ID of #postdivrich so you can hide it using CSS. Probably the easiest thing to do is to add a settings option to an existing page so you can turn it off or on. The post below covers that in detail: http://wpengineer.com/2139/adding-settings-to-an-existing-page-using-the-settings-api/ After you have the … Read more

Getting error Parse error: syntax error, unexpected ‘add_filter’ (T_STRING), expecting function (T_FUNCTION)

My guess would be you have just dropped filter into a class body in between the methods. That is invalid PHP and not going to work. First you need to call it from where code makes sense, inside another class method or from outside a class. Second you cannot hook methods by their name alone, … Read more