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

前端 未结 1 736
天命终不由人
天命终不由人 2021-01-21 17:46

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

1条回答
  •  清酒与你
    2021-01-21 18:47

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

    add_action('wp_head', myCallbackToAddMeta);
    function myCallbacktoAddMeta(){
      echo "\t\n";
    }
    

    0 讨论(0)
提交回复
热议问题