2014-02-21 125 views

回答

1

你正在尋找的鉤media_buttons_context。這裏http://codex.wordpress.org/Plugin_API/Filter_Reference這裏http://codex.wordpress.org/Plugin_API

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!

相關問題