| 1 |
<?php |
| 2 |
/** |
| 3 |
* OG — Better Share on Social Media |
| 4 |
* |
| 5 |
* @package og |
| 6 |
* @author Marcin Pietrzak |
| 7 |
* @copyright 2014-2026 Marcin Pietrzak |
| 8 |
* @license GPL-2.0-or-later |
| 9 |
* |
| 10 |
* @wordpress-plugin |
| 11 |
* Plugin Name: OG — Better Share on Social Media |
| 12 |
* Plugin URI: https://github.com/iworks/og/ |
| 13 |
* Description: Very tiny Open Graph plugin - add featured image as facebook image. This plugin do not have any configuration - you can check how it works looking into page source. |
| 14 |
* Version: 3.3.9 |
| 15 |
* Requires at least: 6.0 |
| 16 |
* Requires PHP: 8.0 |
| 17 |
* Author: Marcin Pietrzak |
| 18 |
* Author URI: http://iworks.pl/ |
| 19 |
* Text Domain: og |
| 20 |
* License: GPL v2 or later |
| 21 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt |
| 22 |
*/ |
| 23 |
|
| 24 |
require_once dirname( __FILE__ ) . '/includes/iworks/class-iworks-opengraph.php'; |
| 25 |
new iWorks_OpenGraph(); |
| 26 |
|
| 27 |
|
| 28 |
|