Plugin info

Total downloads: 8,681
Active installs: 70
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 3/10/2011 (5410 days ago)
Added to WordPress: 3/10/2011 (14 years old)
Minimum WordPress version: 3.1
Tested up to WordPress version: 3.1.4
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 5410 days ago

20/100

Is Open Graph WP implementation abandoned?

Possibly abandoned (last update 5410 days ago).

Compatibility

Requires WordPress: 3.1
Tested up to: 3.1.4
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

Instant Articles for WP
Rating 2.6/5 (100 reviews)Active installs 40,000
Simple Like Page Plugin
Rating 4.3/5 (24 reviews)Active installs 10,000
Easy Social Like Box – Popup – Sidebar Widget
Rating 4.4/5 (18 reviews)Active installs 8,000
Embed social media
Rating 3.7/5 (3 reviews)Active installs 60
Like Gate
Rating 2.5/5 (4 reviews)Active installs 20
RA-Socialize Button
Rating 0.0/5 (0 reviews)Active installs 20

Description

The Open Graph protocol enables any web page to become a rich object in a social graph. For instance, this is used on Facebook to enable any web page to have the same functionality as a Facebook Page.

While many different technologies and schemas exist and could be combined together, there isn’t a single technology which provides enough information to richly represent any web page within the social graph. The Open Graph protocol builds on these existing technologies and gives developers one thing to implement. Developer simplicity is a key goal of the Open Graph protocol which has informed many of the technical design decisions.

For Developers

Use add_action('open_graph_head_pre','your_function'); and add_action('open_graph_head_post','your_function'); to edit the meta data. For an instance of the class.

Always use open_graph_instance()
Read more on the Plugin URI > Open Graph WP implementation or check out the FAQs

Installation

  1. Upload open-graph.php to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Set the default image for your domain (not available via admin panel in version 1.0, replace the image open_graph_protocol_logo.png for now)

Frequently Asked Questions

How to override opengraph metadata?

You can add/edit meta data by using 2 actions ‘open_graph_head_pre’ and ‘open_graph_head_post’.
‘open_graph_head_pre’ executes before the setup takes place.
‘open_graph_head_post’ executes after the setup but before echoing meta data.
I’ll add more functions for editing in later versions.

How to override default image of the plugin?

  • Use the add_action('open_graph_head_pre','my_function') .
  • In my_function grab an instance $og = open_graph_instance(); and call $og->set_default_img( $url );
  • Also you can use 'open_graph_head_post' action and $og->set_og_data( 'og:image' => $url ) but this will over ride for all pages/ posts etc

How to override default type of homepage?

  • Use the add_action('open_graph_head_pre','my_function') .
  • In my_function grab an instance $og = open_graph_instance(); and call $og->set_home_type( $type );
  • Also you can use 'open_graph_head_post' action and if(is_home()) { $og->set_og_data( 'og:type' => $type );}

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

No changelog available