Class: Wordpress::Relationship
- Defined in:
- app/models/wordpress/relationship.rb
Instance Method Summary collapse
Methods inherited from WpBase
Instance Method Details
#decrement_term_use_count ⇒ Object
22 23 24 |
# File 'app/models/wordpress/relationship.rb', line 22 def decrement_term_use_count self.taxonomy.update_attribute(:count, self.taxonomy.count - 1) if self.taxonomy.present? end |
#increment_term_use_count ⇒ Object
18 19 20 |
# File 'app/models/wordpress/relationship.rb', line 18 def increment_term_use_count self.taxonomy.update_attribute(:count, self.taxonomy.count + 1) if self.taxonomy.present? end |