Version Description
- Bugfix: small change to avoid using the "has_cap" function that is deprecated. Thanks to @flynsarmy.
Download this release
Release Info
Developer | wonderm00n |
Plugin | Open Graph for Facebook, Google+ and Twitter Card Tags |
Version | 0.2.2 |
Comparing to | |
See all releases |
Code changes from version 0.2.1 to 0.2.2
- readme.txt +6 -2
- wonderm00n-open-graph.php +3 -3
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://blog.wonderm00n.com/2011/10/14/wordpress-plugin-simple-faceb
|
|
4 |
Tags: facebook, open graph, seo, share, social, meta
|
5 |
Requires at least: 3
|
6 |
Tested up to: 3.2.1
|
7 |
-
Stable tag: 0.2.
|
8 |
|
9 |
This plugin inserts Facebook Open Graph Tags into your WordPress Blog/Website for more effective Facebook sharing results.
|
10 |
|
@@ -35,9 +35,13 @@ The tags that this plugin inserts are:
|
|
35 |
|
36 |
== Changelog ==
|
37 |
|
|
|
|
|
|
|
|
|
38 |
= 0.2.1 =
|
39 |
|
40 |
-
* Bugfix when the og:image is not hosted on the same domain as the website/blog.
|
41 |
|
42 |
= 0.2 =
|
43 |
|
4 |
Tags: facebook, open graph, seo, share, social, meta
|
5 |
Requires at least: 3
|
6 |
Tested up to: 3.2.1
|
7 |
+
Stable tag: 0.2.2
|
8 |
|
9 |
This plugin inserts Facebook Open Graph Tags into your WordPress Blog/Website for more effective Facebook sharing results.
|
10 |
|
35 |
|
36 |
== Changelog ==
|
37 |
|
38 |
+
= 0.2.2 =
|
39 |
+
|
40 |
+
* Bugfix: small change to avoid using the "has_cap" function that is deprecated. Thanks to @flynsarmy.
|
41 |
+
|
42 |
= 0.2.1 =
|
43 |
|
44 |
+
* Bugfix: when the og:image is not hosted on the same domain as the website/blog.
|
45 |
|
46 |
= 0.2 =
|
47 |
|
wonderm00n-open-graph.php
CHANGED
@@ -287,9 +287,9 @@ if ( is_admin() ) {
|
|
287 |
add_action('activate_wonderm00n-open-graph/wonderm00n-open-graph.php', 'wonderm00n_open_graph_activate');
|
288 |
|
289 |
function wonderm00n_open_graph_add_options() {
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
}
|
294 |
|
295 |
function wonderm00n_open_graph_activate() {
|
287 |
add_action('activate_wonderm00n-open-graph/wonderm00n-open-graph.php', 'wonderm00n_open_graph_activate');
|
288 |
|
289 |
function wonderm00n_open_graph_add_options() {
|
290 |
+
if(function_exists('add_options_page')){
|
291 |
+
add_options_page('Wonderm00n\'s Open Graph', 'Wonderm00n\'s Open Graph', 'manage_options', basename(__FILE__), 'wonderm00n_open_graph_admin');
|
292 |
+
}
|
293 |
}
|
294 |
|
295 |
function wonderm00n_open_graph_activate() {
|