/**
  * Access a list of post tags.
  *
  * See http://codex.wordpress.org/Function_Reference/wp_get_object_terms#Argument_Options
  * for a list of available argument options.
  *
  * Example:
  *
  * ```html
  *   {% for tag in episode.tags({order: "ASC", orderby: "count"}) %}
  *     <a href="{{ tag.url }}">{{ tag.name }} ({{ tag.count }})</a>
  *   {% endfor %}
  * ```
  * 
  * @see  tag
  * @accessor
  */
 public function tags($args = [])
 {
     return array_map(function ($tag) {
         return new Tag($tag, $this->episode->get_blog_id());
     }, $this->episode->tags($args));
 }