blocks.js
57 lines
| 1 | /** |
| 2 | * Since we dynamically load our blocks, wordpress.org cannot pick them up properly. |
| 3 | * This file solely exists to let WordPress know what blocks we are currently using. |
| 4 | * |
| 5 | * @since 4.2.4 |
| 6 | */ |
| 7 | |
| 8 | /* eslint-disable no-undef */ |
| 9 | |
| 10 | registerBlockType('aioseo/ai-assistant', { |
| 11 | title : 'AIOSEO - AI Assistant' |
| 12 | }) |
| 13 | registerBlockType('aioseo/breadcrumbs', { |
| 14 | title : 'AIOSEO - Breadcrumbs' |
| 15 | }) |
| 16 | registerBlockType('aioseo/html-sitemap', { |
| 17 | title : 'AIOSEO - HTML Sitemap' |
| 18 | }) |
| 19 | registerBlockType('aioseo/faq', { |
| 20 | title : 'AIOSEO - FAQ with JSON Schema' |
| 21 | }) |
| 22 | registerBlockType('aioseo/table-of-contents', { |
| 23 | title : 'AIOSEO - Table of Contents' |
| 24 | }) |
| 25 | registerBlockType('aioseo/businessinfo', { |
| 26 | title : 'AIOSEO - Local Business Info' |
| 27 | }) |
| 28 | registerBlockType('aioseo/locationcategories', { |
| 29 | title : 'AIOSEO - Local Business Location Categories' |
| 30 | }) |
| 31 | registerBlockType('aioseo/locations', { |
| 32 | title : 'AIOSEO - Local Business Locations' |
| 33 | }) |
| 34 | registerBlockType('aioseo/locationmap', { |
| 35 | title : 'AIOSEO - Local Business Google Map' |
| 36 | }) |
| 37 | registerBlockType('aioseo/openinghours', { |
| 38 | title : 'AIOSEO - Local Business Opening Hours' |
| 39 | }) |
| 40 | registerBlockType('aioseo/author-bio', { |
| 41 | title : 'AIOSEO - Author Bio (E-E-A-T)' |
| 42 | }) |
| 43 | registerBlockType('aioseo/author-tooltip', { |
| 44 | title : 'AIOSEO - Author Name (E-E-A-T)' |
| 45 | }) |
| 46 | registerBlockType('aioseo/reviewer-tooltip', { |
| 47 | title : 'AIOSEO - Reviewer Name (E-E-A-T)' |
| 48 | }) |
| 49 | registerBlockType('aioseo/key-points', { |
| 50 | title : 'AIOSEO - Key Points (TLDR)' |
| 51 | }) |
| 52 | registerBlockType('aioseo/recipe', { |
| 53 | title : 'AIOSEO - Recipe' |
| 54 | }) |
| 55 | registerBlockType('aioseo/product', { |
| 56 | title : 'AIOSEO - Product' |
| 57 | }) |