PluginProbe
OG — Better Share on Social Media / 3.3.9
OG — Better Share on Social Media v3.3.9
2.8.8 2.8.9 2.9.0 2.9.1 2.9.2 2.9.3 2.9.4 2.9.5 2.9.6 2.9.7 2.9.8 2.9.9 3.0.0 3.0.1 3.0.2 3.0.3 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.1.8 All 85 releases
og / og.php

og.php in OG — Better Share on Social Media 3.3.9, at og.php

28 lines 919 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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