Edit Post Page

The Edit Post page has 1 dashboard menu plugin slot.

Learn more about dashboard plugins and slots.

Page location in dashboard

Navigate to this page by creating a new post or editing an existing post:

  • Blog > Overview/Posts > Create New Post
  • Blog > Posts > Hover over a post > Edit

Slot 1: More actions menu

This dashboard menu plugin slot is located in the top right corner in the Edit Post page.

Multiple plugins in the same slot

This menu plugin slot can host multiple plugins.

The plugins are displayed vertically and ordered by date created, with the most recently created plugin displayed at the bottom.

Slots list

Slot nameSlot typeIDInterface
More actions menuDashboard menu plugin slot1e756df4-6c2e-403c-b81c-c3de62aebac7EditPostMainMoreActionsMenuParams

Related APIs

You can implement logic in your plugin using the Wix Blog APIs:

Did this help?

Edit Post Main More Actions Menu Params


Apps built by Wix pass parameters via dashboard slots for you to utilize in your plugin’s functionality. Learn how to interact with and retrieve parameters from the dashboard page.

Plugin Params
This slot does not accept any parameters.

Use this in the code for the page or modal opened by the dashboard menu plugin.

JavaScript
import React, { type FC } from 'react'; import { WixDesignSystemProvider, Button } from '@wix/design-system'; import '@wix/design-system/styles.global.css'; import { plugins } from "@wix/blog/dashboard"; type EditPostMainMoreActionsMenuParams = plugins.Posts.EditPostMainMoreActionsMenuParams; const Modal: FC<EditPostMainMoreActionsMenuParams> = (props: EditPostMainMoreActionsMenuParams) => { return ( <WixDesignSystemProvider features={{ newColorsBranding: true }}> <Button onClick={() => ({})} > Click me! </Button> </WixDesignSystemProvider> ); }; export default Modal;
Did this help?