Skip to content

Instantly share code, notes, and snippets.

@schemapress
Created October 16, 2019 23:36
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 schemapress/a0c32dd3cc2931469ec0c749aa4e4c99 to your computer and use it in GitHub Desktop.
Save schemapress/a0c32dd3cc2931469ec0c749aa4e4c99 to your computer and use it in GitHub Desktop.
Schema Plugin: Add additional Social Profiles links to Knowledge Graph https://schema.press/downloads/schema/
<?php //* do not include php tag
add_filter( 'schema_wp_knowledge_graph_json', 'add_social_to_schema_wp_knowledge_graph_json_567656765' );
/**
* Schema Premium Plugin: Add additional Social Profiles links to Knowledge Graph
*
* @since 1.0.0
*/
function add_social_to_schema_wp_knowledge_graph_json_567656765( $schema ) {
$schema["sameAs"][] = 'URL #1 HERE';
$schema["sameAs"][] = 'URL #2 HERE';
return $schema;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment