Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Hesham Zebida

    (@hishaman)

    This wasn’t mentioned in the corporate contacts guidelines. Also, since Schema plugin follows Google’s guidelines and there is no much details on how to control what shows in the knowledge panel, I won’t making this part of the core plugin (at least not at this point).

    However, the good news is you still can add extra details to the JSON-LD output by extending the Schema plugin output, here is a function that you may want to use (link to gist for this code):

    add_action('schema_wp_knowledge_graph_json', 'schema_wp_knowledge_graph_json_123456');
    /**
     * Extend Schema Knowledge Graph JSON-LD output 
     *
     * @return schema json-ld array
     */
    function schema_wp_knowledge_graph_json_123456( $schema ) {
    	
    	$schema['founder'] = "Founder Name"; // This can be a Person or Organization
    	
    	return $schema;
    }

    P.S. Replace “Founder Name” with the Founder’s actual name.

    Note: Per to schema.org recommendations, the “founder” property can be a Person or Organization.

    You can add this code to your Theme’s functions.php file, or maybe in a form of a plugin.

    I hope this helps.

    Thread Starter abhi7tomar

    (@abhi7tomar)

    Thank you for your rocket reply and i also want CEO name in knowledge graph along with founder name .

    1. the codes which you ahve given to me it will work ? where is a form of plugin ?

    2.and i have installed plugin 2 days back but google not showing any single output .

    Plugin Author Hesham Zebida

    (@hishaman)

    1- The code above should work, you need to add it to your Theme’s functions.php file, or make it as a plugin (maybe functionality plugin), or another option is to use the Code Snippets plugin.

    For the CEO, I don’t know how this should be added because it’s not documented.

    2- The Schema plugin adds the necessary markups, but your site has to be qualified and there is some other work to be done from your site, please search for topics on Google, or you can start here. (this is something I can not assist you with, so you must do it on your own).

    P.S. This forum is only to report bugs and recommend features, but it’s not to get SEO help. I hope you understand.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Ceo,Founder ,etc on knowledgge graph’ is closed to new replies.