我如何从wordpress插件添加元数据到页面的头部部分


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

我正在写一个wordpress插件,需要从我的插件中添加一些元标签到页面的头部部分。有人知道我会怎么做吗?

谢谢

是的,你可以像这样给wp_head添加一个动作钩子:

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