name = $name; $this->content = $content; $this->link_content = $link_content; $this->link_class = isset( $options['link_class'] ) ? $options['link_class'] : ''; $this->link_title = isset( $options['link_title'] ) ? $options['link_title'] : ''; } /** * Returns the html for the tab link. * * @return string */ public function link() { return sprintf( '
  • %4$s
  • ', esc_attr( $this->name ), esc_attr( $this->link_class ), ( '' !== $this->link_title ) ? ' title="' . esc_attr( $this->link_title ) . '"' : '', $this->link_content ); } /** * Returns the html for the tab content. * * @return string */ public function content() { return sprintf( '
    %2$s
    ', esc_attr( $this->name ), $this->content ); } }