Skip to content

Instantly share code, notes, and snippets.

@kraftbj
Last active April 1, 2021 18:42
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 kraftbj/8873958 to your computer and use it in GitHub Desktop.
Save kraftbj/8873958 to your computer and use it in GitHub Desktop.
Add FB Admins meta tag
<?php
/*
* Plugin Name: Custom Facebook Admin Meta Tag
*/
function custom_facebook_admin_meta_tag() {
$userid = "123456";
$meta = '<meta property="fb:admins" content="' . esc_attr($userid) .'">';
echo $meta;
}
add_action( 'wp_head', 'custom_facebook_admin_meta_tag');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment