The following command will hide gVim menu and toolbar.
:set go-=m go-=T go-=r
The following command will hide gVim menu and toolbar.
:set go-=m go-=T go-=r
The following sql code snippet will set all posts/entries in WordPress as draft.
UPDATE wp_posts
SET wp_posts.post_status = 'draft'
WHERE wp_posts.post_type ='post';