标签: php wordpress wordpress-theming
我创建了一个非常简单的插件,可以在页面顶部添加自定义标题:
add_action('wp_head' , 'add_custom_header'); function add_custom_header(){ //Some Code. }
但是该代码在页面上显示两次,也许wp_head()被添加到第二位。
wp_head()
所以我想在the add_custom_header函数中添加该代码,以便在我网站上每个页面的<body>元素之后添加。
the add_custom_header
<body>