0.0
No commit activity in last 3 years
No release in over 3 years
A Ruby library to interact with the Wordpress XMLRPC interface
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0

Runtime

 Project Readme

Wordpressto¶ ↑

Wordpressto is a Ruby library for reading from and writing to Wordpress blogs via their XMLRPC interface.

It was extracted from another project and isn’t yet feature complete, but it is still useful. The documentation is lacking and the test suite is not complete. Remember though: release early and release often!

Installation¶ ↑

sudo gem install wordpressto

Documentation¶ ↑

require 'wordpressto'
blog = Wordpressto::WordpressBlog.new :url => 'http://www.example.com/xmlrpc.php',
                                      :username => 'john', :password=> 'letmein'

# Output the list of categories
blog.categories.each { |c| puts c.name }

# Get the 20 most recent posts
blog.posts.find_recent(:limit => 20)

# Create a new blog post
post = blog.posts.new(:title => 'Test', :description => 'This is a test', 
                      :keywords => 'test, testing', :published => true)
post.save

# Edit a blog post
post = blog.posts.find(123)
post.title = "Edited title"
post.save

# Upload an attachment
attachment = blog.attachments.new(:name => 'Photo of me', :filename => '/home/john/me.jpg')
attachment.save

More Info¶ ↑

Author

John Leach (john@johnleach.co.uk)

Copyright

Copyright © 2010 John Leach

License

MIT

Github

github.com/johnl/wordpressto/tree/master