/**
  * Web Player for the current episode
  * 
  * The player should not appear in feeds, so embed it like this:
  * 
  * ```jinja
  * {% if not is_feed() %}
  *   {{ episode.player }}
  * {% endif %}
  * ```
  * 
  * You can set a custom context for tracking:
  * 
  * ```jinja
  * {{ episode.player({context: 'landing-page'}) }}
  * ```
  * 
  * @accessor
  */
 public function player($args = [])
 {
     $defaults = ['context' => NULL];
     $args = wp_parse_args($args, $defaults);
     return $this->episode->player($args['context']);
 }