Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seanbehan/wpdb
Wordpress DB on Active Record
https://github.com/seanbehan/wpdb
Last synced: 25 days ago
JSON representation
Wordpress DB on Active Record
- Host: GitHub
- URL: https://github.com/seanbehan/wpdb
- Owner: seanbehan
- License: mit
- Created: 2013-11-04T03:07:00.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-11-05T04:53:20.000Z (over 11 years ago)
- Last Synced: 2024-05-13T03:02:06.390Z (9 months ago)
- Language: Ruby
- Size: 129 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Wpdb
An Active Record wrapper for the Wordpress Database
```ruby
require 'active_record'
require 'wpdb'ActiveRecord::Base.establish_connection(
:adapter => 'mysql',
:host => 'localhost',
:port => 3306,
:username => 'root',
:password => '',
:database => 'your_db_name'
)wp_post = Wpdb::WpPost.posts.last
puts wp_post.post_title
puts wp_post.wp_comments.count
puts wp_post.wp_categories
puts wp_post.wp_tags
```