如何添加和编辑帖子/页面的自定义按钮?

时间:2014-02-21 11:01:12

标签: wordpress-plugin wordpress

在添加和编辑帖子页面上,我需要使用哪个函数/钩子才能在此处插入按钮?

非常感谢!

Add button here

1 个答案:

答案 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!