在添加和编辑帖子页面上,我需要使用哪个函数/钩子才能在此处插入按钮?
非常感谢!
答案 0 :(得分:1)
您正在寻找的钩子是media_buttons_context。您可以执行以下操作:
add_action('media_buttons_context', 'add_my_custom_button');
function add_my_custom_button($context) {
//path to my icon
$img = 'penguin.png';
//our popup's title
$title = 'An Inline Popup!';
//append the icon
$context .= "<a title='{$title}' href='#'>
<img src='{$img}' /></a>";
return $context;
}
来源Here!