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

Assign a category by user and customize the edit-tags.php?taxonomy=category page

This is how I did it : function if_restrict_categories($categories) { global $current_user; $a = get_cat_if_user($current_user->ID); $onPostPage = (strpos($_SERVER[‘PHP_SELF’], ‘edit-tags.php’)); if (is_admin() && $onPostPage && !current_user_can(‘level_10’)) { $size = count($categories); for ($i = 0; $i < $size; $i++) { if($categories[$i]->parent != $a && $categories[$i]->term_id != $a){ unset($categories[$i]); } } } return $categories; } add_filter(‘get_terms’, ‘if_restrict_categories’); And … Read more

Choose options via url

I think this Custom Field Template plugin will help you. Plugin site. Don’t worry about Chinese screenshots. If you set at least one Custom Field Template for one category, when creating post and check that category additional options will appear.

local WAMP admin user has lost privileges

This sounds like a Folder Permissions problems – the MAMP Apache user needs to have read/write privileges on everything under your Sites/wordpress/ folder. This is easy to do from the terminal … my post on Permissions should help can i run wp as root permissions

Prevent users from changing post status

Add this code where it’s should be (plugin/functions.php/mu-plugin) – simple “hide” method using css. add_action(‘admin_print_styles-post.php’, ‘hide_publishing_block_using_css’); add_action(‘admin_print_styles-post-new.php’, ‘hide_publishing_block_using_css’); function hide_publishing_block_using_css(){ echo ‘<style>#misc-publishing-actions{display:none;}</style>’; }