| 1 |
/** |
| 2 |
* Shared null save() for PB field blocks. |
| 3 |
* |
| 4 |
* `post_content` is blanked on save and the block tree is rebuilt from legacy |
| 5 |
* meta on REST read, so dynamic blocks never emit anything from save(). Field |
| 6 |
* and structural blocks import this rather than shipping an identical 3-line |
| 7 |
* save.js. Container blocks needing `<InnerBlocks.Content />` (Repeater, FFC) |
| 8 |
* keep their own save.js. |
| 9 |
*/ |
| 10 |
export default function save() { |
| 11 |
return null; |
| 12 |
} |
| 13 |
|