Posting to a wordpress blog from emacs, using org2blog.
(add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/") t)
(require 'org-install) ;; Configure languages to run code for in org-mode (org-babel-do-load-languages 'org-babel-load-languages '((perl . t) (ruby . t) (sh . t) (python . t) (emacs-lisp . t) (C . t) )) ;; Use native mode for fontifying code blocks (setq org-src-fontify-natively t) ;; Preserve indentation in exported code blocks (setq org-src-preserve-indentation t)
(require 'org2blog) ;; Don't use sourcecode tags in wordpress (setq org2blog/wp-use-sourcecode-shortcode nil) ;; Default parameters for sourcecode tag (setq org2blog/wp-sourcecode-default-params nil)
(setq org2blog/wp-blog-alist '(("sdowney" :url "http://www.sdowney.org/wordpress/xmlrpc.php" :username "sdowney" :default-title "Hello World" :default-categories ("org2blog" "emacs") :tags-as-categories nil) ))