> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: Wix Blog: Edit Post Page ## Article: Wix Blog: Edit Post Page ## Article Link: https://dev.wix.com/docs/build-apps/develop-your-app/extensions/dashboard-extensions/dashboard-plugins/supported-wix-app-dashboard-pages/wix-blog/wix-blog-edit-post-page.md ## Article Content: # Wix Blog: Edit Post Page The Edit Post page has 1 dashboard menu plugin slot. [Slots](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/dashboard-extensions/dashboard-plugins/supported-wix-app-dashboard-pages/about-dashboard-page-slots.md) are the placeholders in the UI for plugins. The slot ID is the value for the required `extends` field when configuring the plugin in the [App Dashboard](https://dev.wix.com/apps). ## 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 ## Dashboard menu plugin slots The Edit Post page features 1 dashboard menu plugin slot. ### Slot 1: More actions menu This dashboard menu plugin slot is located in the top right corner in the Edit Post page. ![](https://wixmp-833713b177cebf373f611808.wixmp.com/images/wix-blog-create-edit-post-page-md_build-apps-portal_develop-your-app_extensions_dashboard-extensions_dashboard-plugins_supported-wix-app-dashboad-pages_assets_blog-create-edit-post-more-actions1.png) #### Configuration Use the following slot ID for the `extends` property in your dashboard menu plugin's configuration in your app's dashboard: **slot ID**: `1e756df4-6c2e-403c-b81c-c3de62aebac7` For example: ```json { "hostingPlatform": "BUSINESS_MANAGER", "extends": "1e756df4-6c2e-403c-b81c-c3de62aebac7", "title": "My Menu Plugin", "iconKey": "Smile", "action": { "navigateToPage": { "pageId": "36bceb0e-5ac3-4b12-a40d-df0bf5e8dc89", "relativeUrl": "?home" } }, "componentName": "myMenuPlugin" } ```
__Important:__ The hosting platform must be "BUSINESS_MANAGER".
### 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. ## Wix APIs You can implement logic in your plugin using the Wix Blog APIs: - [SDK](https://dev.wix.com/docs/sdk/backend-modules/blog/introduction.md) - [REST](https://dev.wix.com/docs/rest/business-solutions/blog/introduction.md) ## Slot IDs | Slot | ID | Parameters | | ---- | -- | ---------- | | More actions menu | `1e756df4-6c2e-403c-b81c-c3de62aebac7` | | ## See also - [About Dashboard Page Slots](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/dashboard-extensions/dashboard-plugins/supported-wix-app-dashboard-pages/about-dashboard-page-slots.md) - [About Dashboard Plugin Extensions](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/dashboard-extensions/dashboard-plugins/about-dashboard-plugin-extensions.md) - [Add Self-hosted Dashboard Plugin Extensions](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/dashboard-extensions/add-self-hosted-dashboard-plugin-extensions.md) - [About Dashboard Menu Plugin Extensions](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/dashboard-extensions/dashboard-plugins/dashboard-menu-plugins/dashboard-menu-plugin-extensions.md) - [Add Dashboard Menu Plugin Extensions](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/dashboard-extensions/dashboard-plugins/dashboard-menu-plugins/add-dashboard-menu-plugin-extensions.md)