Skip to content
This repository was archived by the owner on Feb 26, 2018. It is now read-only.

Taxonomy

Zack Siri edited this page May 27, 2014 · 4 revisions

You can create your own taxonomy type. All you have to do is create a class and extend from Writefully::Tag

class Playlist < Writefully::Tag
  
end

To use this taxonomy in the post simply add this to your content model.

class Article < Writefully::Post
  wf_taxonomize :playlists,  -> { where(type: 'Playlist') }, through: :taggings,  source: :tag
end

Clone this wiki locally