public function content_filter($content)
 {
     global $essbis_options;
     $attributes = ' data-essbisPostContainer=""';
     $attributes .= ' data-essbisPostUrl="' . get_the_permalink() . '"';
     $attributes .= ' data-essbisPostTitle="' . wp_strip_all_tags(get_the_title(), true) . '"';
     $attributes .= ' data-essbisHoverContainer=""';
     $post_container = '<input type="hidden" value=""' . $attributes . '>';
     if ('1' == $essbis_options['buttonSettings']['generalDownloadImageDescription']) {
         $content = ESSBIS_Utils::add_description_attribute_to_images($content);
     }
     return $post_container . $content;
 }