Class: Wordpress::Page
Constant Summary collapse
- ATTRIBUTE_MATCHES =
{ :metaWeblog => { }, :wp => { :page_id => :id, :title => :title, :page_title => :title, :description => :content, :mt_excerpt => :excerpt, :dateCreated => :creation_date, :page_parent_id => :parent_id, :wp_page_parent_id => :parent_id } }
Instance Attribute Summary collapse
-
#parent ⇒ Object
Returns the value of attribute parent.
-
#parent_id ⇒ Object
Returns the value of attribute parent_id.
-
#published ⇒ Object
Returns the value of attribute published.
Method Summary
Methods included from ContentItem
Instance Attribute Details
#parent ⇒ Object
Returns the value of attribute parent.
21 22 23 |
# File 'lib/page.rb', line 21 def parent @parent end |
#parent_id ⇒ Object
Returns the value of attribute parent_id.
20 21 22 |
# File 'lib/page.rb', line 20 def parent_id @parent_id end |
#published ⇒ Object
Returns the value of attribute published.
20 21 22 |
# File 'lib/page.rb', line 20 def published @published end |