geoffs3310
geoffs3310

Reputation: 14008

How can I add meta data to the head section of the page from a wordpress plugin?

I am writing a wordpress plugin and need to add some meta tags to the head section of the page from within my plugin. Does anyone know how I would do this?

Thanks

Upvotes: 2

Views: 3865

Answers (1)

Naveed Ahmad
Naveed Ahmad

Reputation: 3175

Yes you can add an action hook to wp_head like this:

add_action('wp_head', myCallbackToAddMeta);
function myCallbacktoAddMeta(){
  echo "\t<meta name='keywords' content='$contents' />\n";
}

Upvotes: 6

Related Questions