Magento 2 Admin Capabilities
-
In Adobe Commerce (paid version):
There’s an Export button in Content > Elements > Pages and Content > Elements > Blocks. This allows you to export CMS pages/blocks into a CSV/XML file straight from the admin. -
In Magento 2 Open Source (free version):
Unfortunately, there’s no built-in “Export to CSV” button for CMS pages or blocks in the Admin. You only get export options for things like products and customers.

Workarounds for Magento Open Source
If you’re on Open Source and need a CSV from the Admin, you have a few options:
-
Use the Grid Export Module (Free/3rd-Party Extension)
-
Extensions like “UI Grid Export” or “CMS Export Import” add an Export CSV button to the CMS pages grid.
-
After installation, go to Content > Pages → click Export to CSV.
-
-
Custom Admin Action
-
A developer can add a simple mass action or export button to the CMS grid using Magento’s
UiComponent
export functionality.
-
-
Alternative Quick Way (Manual)
-
Go to Content > Pages.
-
Use the grid filters to display the list.
-
Copy/paste into Excel/Google Sheets → Save as CSV.
(Not elegant, but works if you only need it once).
-