在页眉编辑表单上方添加内容

时间:2021-03-22 作者:Stefan

我正在寻找一个可以让我有机会添加一些内容的钩子above 编辑页面中的标题行。

我找到了这些钩子,但这个地方在标题和标题之间有些东西。

add_action( \'edit_form_top\', \'test\' );

function test(){
?>
<div>
    hello
</div>
<?php
}
?>
有没有人知道这有没有诱饵?

1 个回复
SO网友:Jop

你可以用这个钩子

add_action( \'in_admin_header\', \'testt\'); 
它在<div id="wpcontent"> and <div id="wpbody"> 标签。

相关推荐

OOP development and hooks

我目前正在为Wordpress编写我的第一个OOP插件。为了帮助我找到一点结构,a boiler plate 这为我奠定了基础。在里面Main.php 有一种方法可以为管理员加载JS和CSS资产:/** * Register all of the hooks related to the admin area functionality * of the plugin. * * @since 0.1.0 * @access private