A WordPress plugin for simple, comprehensive, customizable Open Graph management.
There's no shortage of plugins that promise to be THE all-in-one solution for all things SEO. Unfortunately, this often means lack of flexibility, confusing implementation, or just a big, bloated plugin that carries way too many features for your needs.
This plugin is built on an alternative philosophy: do one thing and one thing well. Complete Open Graph provides automatic, comprehensive, just-makes-sense Open Graph management, whether it's for a simple blog or a complex site with diverse sets of content.
Out of the box, Complete Open Graph generates all the basic tags your site should have, making it ready for social sharing on platforms including Twitter, Facebook, LinkedIn and Google+, and gives you full programmatic access to filter this data as you need.
TL;DR: This plugin does Open Graph. Freaking good Open Graph.
- Download the plugin and upload to your plugins directory, or install the plugin through the WordPress plugins page.
- Activate the plugin on the 'Plugins' page.
- (Optional) Use the Settings->Open Graph screen to set your default Open Graph data.
Upon activation, Complete Open Graph is ready to generate Open Graph meta tags, with an intuitive set of fallbacks in place. Literally no configuration is required to begin making your site socially shareable.
On each page and post, the following fields are automatically generated, based on available page data. Many of these can be manually set at the page/post level.
- og:site_name
- og:locale
- og:type
- og:title
- og:url
- og:description
- og:image
- og:image:width
- og:image:height
- twitter:card
- twitter:creator
- twitter:title
- twitter:description
- twitter:image
- twitter:url
- twitter:site
- profile:first_name (Currently only displayed on individual author pages.)
- profile:last_name (Currently only displayed on individual author pages.)
As a fallback for values that aren't filled automatically by a page or post, you can set default values for Open Graph data. If desired, you can force these individual values to be used globally, overriding whatever is set at a page/post level.
- og:type
- og:title
- og:image
- og:image:width
- og:image:height
- og:description
- twitter:card
- twitter:description
- twitter:creator
- twitter:site
- fb:admins
- fb:app_id
The complete_open_graph_all_data
filter allows the customization of the entire set of Open Graph values, as well as the addition of new meta tags (including those that aren't Open Graph).
Example for customizing out-of-the-box Open Graph data:
function modify_open_graph_data($data) {
$data['og:site_name']['value'] = 'whatevs';
return $data;
}
add_filter('complete_open_graph_all_data', 'modify_open_graph_data');
Example for adding a standard, old meta tag:
function add_new_open_graph_fields($data) {
$data['keywords']['attribute'] = 'name';
$data['keywords']['value'] = 'keyword1,keyword2,keyword3';
return $data;
}
add_filter('complete_open_graph_all_data', 'add_new_open_graph_fields');
The complete_open_graph_processed_value
filter allows you to modify a single field after it's gone through the progression of priorities. For that reason, it will only be effective on the following fields:
- og:description
- og:title
- og:type
- og:image
- twitter:card
- twitter:title
- twitter:image
- twitter:description
- twitter:creator
Example for manipulating a processed value:
function manipulate_processed_value($value, $field_name) {
if($field_name === 'og:description') {
return 'WHATEVER I WANT.';
}
return $value;
}
add_filter('complete_open_graph_processed_value', 'manipulate_processed_value', 10, 2);
The complete_open_graph_{$tagName}
filter allows you to modify a single field by identifying it by name and returning a modified value. These names are the "name" or "property" attributes on the meta tags. See "Available Fields" above for these names.
Example for manipulating a single value by name:
function modify_title($value, $field_name) {
return 'My Newly Modified Title!'
}
add_filter('complete_open_graph_og:title', 'modify_title', 10, 2);
The complete_open_graph_maybe_enable
filter allows you to disable tag generation altogether by returning a boolean.
Example for disabling generation altogether:
add_filter('complete_open_graph_maybe_enable', '__return_false');
Example for disabling generation on a specific page:
add_filter('complete_open_graph_maybe_enable', function ($maybeEnable) {
global $post;
if($post->post_name === 'my-page') {
return false;
}
return $maybeEnable;
});
There's a fallback system set in place for you to effectively leverage this plugin. Below is the order of priority:
- Filters - Any filters you apply in your code will take priority over any fields you have filled in the admin.
- Forced Global Settings - If you've checked the box on these fields on the settings page, they'll override everything non-filtered.
- Post/Page COG Fields - Filling out the meta box fields on a page or post in the WordPress Admin will give it priority over any default settings (unless they're forced).
- Post/Page Content - If no specific COG fields on the post/page are set, the post/page content itself will be used. For the Open Graph description, the excerpt will be respected if it's filled.
- Default COG Settings - Next, the default COG global settings will used to populate Open Graph tags.
- Blog Info - When nothing else is overriding them, Open Graph fields will default to your general WordPress site settings.
After flowing through this order of priority, if there is still no content to be pulled, those respective Open Graph tags will not be generated. So, don't worry about having extra, useless tags just sitting there in your markup.
- Initial public release.
- Improve documentation.
- Remove bits of logic that require at least PHP 7.
- Change
cog_open_graph_data
filter name tocomplete_open_graph_all_data
. - Add
complete_open_graph_single_value
filter. - Add ability to force global values on all pages.
- Instead of storing global settings in individual option keys, all settings are serialized in the
complete_open_graph
key, making for a slightly tidier database.
- Add support for
twitter:card
(currently only supports "summary"). - Add support for
twitter:creator
. - Add support for
twitter:site
. - Add support for
og:image:width
. - Add support for
og:image:height
.
- Add proper prefix for Open Graph & Facebook parsing.
- Strip shortcodes from generated Open Graph content.
- Fix incorrectly rendered tags for
fb:app_id
andfb:admins
.
- Fix bug producing errors when $post object is not set.
- Display default data on pages where post object is not set (like 404 pages).
- Fix bug preventing image size tags from being rendered.
- Strip style and script tags from generated Open Graph descriptions.
- Rename
complete_open_graph_single_value
filter tocomplete_open_graph_processed_value
. - Add
complete_open_graph_{$tagName}
filter to target specific fields. - Preserve HTML entities in generated content.
- Default to
large
image sizes for images uploaded before plugin was installed.
- Fix bug which was causing the failure to properly decode all quotation marks.
- Fix incorrect reference to
$GLOBALS
superglobal. - Fix miscellaneous bugs caused when
post
object wasn't set. - Fix bug involving specific use of
empty()
function which is unsupported in older versions of PHP and causing a few errors. - Fix bug with generating
og:image
tags on blog list pages. - Make performance improvements to option lookups.
- Fix warning with using
loadHTML()
for parsing certain types of content. - Correctly add space after line breaks are removed from sentances ending in
?
and!
.
- Fix styling issue causing strange layout of COG metabox.
- Add support for different Twitter card types.
- Properly encode special characters into HTML entities.
- Add checks for image existence to avoid potential errors.
- Respect post/page excerpt when generating Open Graph descriptions.
- Add feature to force all fallback settings at once.
- Improve image filtering to prevent potential bugs.
- Fix bug pulling Open Graph data from first post on any archive page; instead, it falls back to global settings.
- Slightly improve efficiency of generating Open Graph markup for each page.
- Uses the
get_locale()
method instead of hard-coding the value for the og:locale meta tag.
- Enqueue WP media scripts with better scope and more flexibility.
- Put
CompleteOpenGraph\App
into$GLOBALS
to allow easier filtering and access within themes and plugins.
- Fix bug causing console error to be thrown on pages that didn't have the
media-upload
script enqueued.
- Fix bug causing errors when invalid attachment IDs were passed to Open Graph parser.
- Add version to assets URLs to break bust cache of outdated files.
- Fix incorrect reference to class property.
- Set up basic unit testing for improved code reliability.
- Improve handling of default values and how they're handled if left empty.
- Fix errors being thrown in PHP versions under 5.6.
- Add filter to disable Open Graph tags per page.
- Improve the logic (and respective efficiency) of determining how image meta tags are generated.
- Improve code organization under the hood.
- Display "profile:first_name" and "profile:last_name" meta tags on author pages.
- Fix constant-related bug for installations using older versions of PHP.
- Removes use of
array_filter
that relies on ARRAY_FILTER_USE_KEY constant for greater PHP backwards compatibility.
- Fixes the generation of the
og:type
tag, which was not displaying at all. - On author archive pages, if author has an avatar image, use that as OG image.
- Fix sizing issue with uploaded images less than 1200px wide.
- Require that selected OG images be, at minimum, 200px x 200px.
- Ensure that OG URLs are never relative.
- Fixes the attribute used to set up
twitter:description
tags. - If no explicit
twitter:description
exists on an archive page, use theog:description
.
You like it? Email or tweet me. You hate it? Email or tweet me.
Regardless of how you feel, your review would be greatly appreciated!
After running composer install
and configuring the tests/bootstrap.php
file to load WordPress, run the following command inside your container to run all tests.
vendor/bin/phpunit