Skip to content

Instantly share code, notes, and snippets.

@logoscreative
Created April 9, 2013 15:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save logoscreative/5346795 to your computer and use it in GitHub Desktop.
Save logoscreative/5346795 to your computer and use it in GitHub Desktop.
Update Infographic Embedder plugin to support pages
function infographic_embedder_add_post_meta_boxes() {
add_meta_box(
'infographic_embedder-post-class',
__( 'Infographic Embed', 'example' ),
'infographic_embedder_post_class_meta_box',
'post',
'side',
'default'
);
add_meta_box(
'infographic_embedder-post-class',
__( 'Infographic Embed', 'example' ),
'infographic_embedder_post_class_meta_box',
'page',
'side',
'default'
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment