Quick helper function that posts the contents of your clipboard using org2blog.
(defun post-clipboard-to-blog () (interactive) (org2blog/wp-new-entry) (insert "\n#+BEGIN_SRC\n") (clipboard-yank) (insert "\n#+END_SRC\n") (search-backward "#+BEGIN_SRC") ) (global-set-key (kbd "C-x V") 'post-clipboard-to-blog)