28 lines
660 B
Markdown
28 lines
660 B
Markdown
|
|
# PluginMoreMenuItem
|
||
|
|
|
||
|
|
该插槽将向“更多工具与选项”区域添加一个新项目。
|
||
|
|
|
||
|
|
## 示例
|
||
|
|
|
||
|
|
```js
|
||
|
|
import { registerPlugin } from '@wordpress/plugins';
|
||
|
|
import { PluginMoreMenuItem } from '@wordpress/editor';
|
||
|
|
import { image } from '@wordpress/icons';
|
||
|
|
|
||
|
|
const MyButtonMoreMenuItemTest = () => (
|
||
|
|
<PluginMoreMenuItem
|
||
|
|
icon={ image }
|
||
|
|
onClick={ () => {
|
||
|
|
alert( '按钮已点击' );
|
||
|
|
} }
|
||
|
|
>
|
||
|
|
更多菜单项
|
||
|
|
</PluginMoreMenuItem>
|
||
|
|
);
|
||
|
|
|
||
|
|
registerPlugin( 'more-menu-item-test', { render: MyButtonMoreMenuItemTest } );
|
||
|
|
```
|
||
|
|
|
||
|
|
## 位置
|
||
|
|
|
||
|
|

|