ruby-wpdb
ruby-wpdb copied to clipboard
Need to access a WordPress site's data from Ruby? ruby-wpdb to the rescue!
Hello, Nice project! Is it still maintained? If so, is there any way to use it with Postgresql database? Thanks, Nicolas.
I couldn't get the example running, after reading the code and debuging i found that this example ``` term = WPDB::Term.create(:name => 'Fred Stuff') post = WPDB::Post.create( :post_title => 'Hello...
As per @parasquid's comment on #22, introduce scopes for posts. Starters for ten: - `published` - `drafts` - `trashed` - `with_attachments`
- [x] Info that uses `site_url`/`home_url` - [ ] Info that uses `get_feed_link`
Hello and Great job, Bravo ! Can you add advices for begineers on the best way to implement ruby-wpdb in rails 4 apps ?
At the moment, we can only ever have one instance of ruby-wpdb active per process. This is both unnecessary and makes for inelegant and hard-to-test initialisation code, and we should...