Moin miteinander,
I've just released DropletsExtension 0.14.
DropletsExtension now supports Facebook Open Graph Meta tags. You can know set facebook=true with the print_page_head() function within the template of your website:
<?php
if (file_exists(WB_PATH.'/modules/droplets_extension/interface.php')) {
require_once(WB_PATH.'/modules/droplets_extension/interface.php');
print_page_head(true);
}
else { ?>
<meta name="description" content="<?php page_description(); ?>" />
<meta name="keywords" content="<?php page_keywords(); ?>" />
<title><?php page_title('', '[WEBSITE_TITLE]'); ?></title>
<?php }
?>
With
print_page_head(true) DropletsExtension will write 5 additional meta tags:
<meta property="og:image" content="http://phpmanufaktur.de/media/content/addons/droplets_extension/droplet-extension-300x400.png" />
<meta property="og:type" content="article" />
<meta property="og:title" content="DropletsExtension - der Nachbrenner für ihre Code-Schnipsel" />
<meta property="og:description" content="Droplets sind eine geniale und einfache Möglichkeit Programmcode genau dort auszuführen, wo er gerade benötigt wird. DropletsExtension stattet Droplets mit den Fähigkeiten vollwertiger Addons aus und macht sie noch leistungsfähiger." />
<meta property="og:url" content="http://phpmanufaktur.de/cms/topics/dropletsextension-der-nachbrenner-fuer-ihre-code-schnipsel.php" />
For the tag
og:image DropletExtension will use the first image of the content (WYSIWYG section or TOPICS article). This grant, that facebook will use this image and don't select any image from your site.
The other tags will be set similiar to the general informations of the page.
Mor informations, download:
DropletsExtensionRegards
Ralf