Open Graph for Facebook, Google+ and Twitter Card Tags - Version 3.1.1

Version Description

  • Added i18n-config.json file for basic qTranslate-XT compatibility (Thanks @grapestain)
  • Tested with WordPress 5.7-alpha-50017 and WooCommerce 5.0.0-beta.2
Download this release

Release Info

Developer webdados
Plugin Icon Open Graph for Facebook, Google+ and Twitter Card Tags
Version 3.1.1
Comparing to
See all releases

Code changes from version 3.1.0 to 3.1.1

Files changed (3) hide show
  1. i18n-config.json +42 -0
  2. readme.txt +6 -2
  3. wonderm00n-open-graph.php +3 -3
i18n-config.json ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "vendor": {
3
+ "plugins/wonderm00ns-simple-facebook-open-graph-tags": "3.0.0"
4
+ },
5
+ "admin-config": {
6
+ "wonderm00ns-simple-facebook-open-graph-tags-posts": {
7
+ "pages": {
8
+ "post.php": "",
9
+ "post-new.php": ""
10
+ },
11
+ "forms": {
12
+ "document": {
13
+ "fields": {
14
+ "webdados_fb_open_graph_specific_description":{"encode":"input"}
15
+ }
16
+ }
17
+ }
18
+ },
19
+ "wonderm00ns-simple-facebook-open-graph-tags-global": {
20
+ "pages": {
21
+ "options-general.php": "page=class-webdados-fb-open-graph-admin.php"
22
+ },
23
+ "forms": {
24
+ "document": {
25
+ "fields": {
26
+ "fb_desc_default":{"encode":"input"}
27
+ }
28
+ }
29
+ }
30
+ }
31
+ },
32
+ "front-config": {
33
+ "all-pages": {
34
+ "filters": {
35
+ "text": {
36
+ "fb_og_title": "20",
37
+ "fb_og_desc": "20"
38
+ }
39
+ }
40
+ }
41
+ }
42
+ }
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: webdados, wonderm00n
3
  Donate link: http://bit.ly/donate_fb_opengraph
4
  Tags: facebook, open graph, twitter card, social media, open graph protocol, share, social, meta, rss, twitter, google, image, like, seo, search engine optimization, woocommerce, yoast seo, wordpress seo, woocommerce, subheading, php7, webdados
5
  Requires at least: 4.5
6
- Tested up to: 5.6
7
- Stable tag: 3.1.0
8
 
9
  Improve social media sharing by inserting Facebook Open Graph, Twitter Card, and SEO Meta Tags on your WordPress website pages, posts, WooCommerce products, or any other custom post type.
10
 
@@ -171,6 +171,10 @@ It’s similar, yes. They’ve forked our plugin and gave no credits whatsoever
171
 
172
  == Changelog ==
173
 
 
 
 
 
174
  = 3.1.0 =
175
  * Add support for new PRO add-on features
176
  * Tested with WordPress 5.6-beta3-49562 and WooCommerce 4.8.0-beta.1
3
  Donate link: http://bit.ly/donate_fb_opengraph
4
  Tags: facebook, open graph, twitter card, social media, open graph protocol, share, social, meta, rss, twitter, google, image, like, seo, search engine optimization, woocommerce, yoast seo, wordpress seo, woocommerce, subheading, php7, webdados
5
  Requires at least: 4.5
6
+ Tested up to: 5.7
7
+ Stable tag: 3.1.1
8
 
9
  Improve social media sharing by inserting Facebook Open Graph, Twitter Card, and SEO Meta Tags on your WordPress website pages, posts, WooCommerce products, or any other custom post type.
10
 
171
 
172
  == Changelog ==
173
 
174
+ = 3.1.1 =
175
+ * Added i18n-config.json file for basic [qTranslate-XT](https://github.com/qtranslate/qtranslate-xt) compatibility (Thanks @grapestain)
176
+ * Tested with WordPress 5.7-alpha-50017 and WooCommerce 5.0.0-beta.2
177
+
178
  = 3.1.0 =
179
  * Add support for new PRO add-on features
180
  * Tested with WordPress 5.6-beta3-49562 and WooCommerce 4.8.0-beta.1
wonderm00n-open-graph.php CHANGED
@@ -3,17 +3,17 @@
3
  Plugin Name: Open Graph and Twitter Card Tags
4
  Plugin URI: https://www.webdados.pt/wordpress/plugins/facebook-open-graph-meta-tags-wordpress/
5
  Description: Improve social media sharing by inserting Facebook Open Graph, Twitter Card and SEO Meta Tags on your WordPress website pages, posts, WooCommerce products, or any other custom post type.
6
- Version: 3.1.0
7
  Author: Webdados
8
  Author URI: https://www.webdados.pt
9
  Text Domain: wonderm00ns-simple-facebook-open-graph-tags
10
  Domain Path: /lang
11
- WC tested up to: 4.8.0
12
  */
13
 
14
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
15
 
16
- define( 'WEBDADOS_FB_VERSION', '3.1.0' );
17
  define( 'WEBDADOS_FB_PLUGIN_NAME', 'Open Graph and Twitter Card Tags' );
18
  define( 'WEBDADOS_FB_W', 1200 );
19
  define( 'WEBDADOS_FB_H', 630 );
3
  Plugin Name: Open Graph and Twitter Card Tags
4
  Plugin URI: https://www.webdados.pt/wordpress/plugins/facebook-open-graph-meta-tags-wordpress/
5
  Description: Improve social media sharing by inserting Facebook Open Graph, Twitter Card and SEO Meta Tags on your WordPress website pages, posts, WooCommerce products, or any other custom post type.
6
+ Version: 3.1.1
7
  Author: Webdados
8
  Author URI: https://www.webdados.pt
9
  Text Domain: wonderm00ns-simple-facebook-open-graph-tags
10
  Domain Path: /lang
11
+ WC tested up to: 5.0
12
  */
13
 
14
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
15
 
16
+ define( 'WEBDADOS_FB_VERSION', '3.1.1' );
17
  define( 'WEBDADOS_FB_PLUGIN_NAME', 'Open Graph and Twitter Card Tags' );
18
  define( 'WEBDADOS_FB_W', 1200 );
19
  define( 'WEBDADOS_FB_H', 630 );