concept-image/wp-seed-block

Add a command to seed post content with blocks and dummy data

1.0.0 2025-03-06 12:26 UTC

This package is not auto-updated.

Last update: 2025-05-02 10:34:20 UTC


README

Purpose

The WP Seed Block package is designed to help developers seed WordPress posts with ACF blocks and dummy data. This is particularly useful for testing and development purposes, allowing you to quickly populate your posts with realistic content.

Requirements

  • PHP >= 8.0
  • WordPress >= 6.5
  • Roots Bedrock >= 1.26
  • Roots Acorn >= 5
  • Concept Image Blocks >= 2

Installation

You can install this package with Composer:

composer require concept-image/wp-seed-block --dev

Available Commands

seed:block

This command seeds a specified post with ACF blocks and dummy data.

Usage

php acorn seed:block {post} {name=default} {count=1}
  • {post}: The ID or slug of the post to seed.
  • {name}: The name of the block or group of blocks (default is 'default').
  • {count}: The number of times to repeat the block content (default is 1).

Example

php acorn seed:block 123 base-text 3

This will seed the post with ID 123 using the 'base-text' configuration, repeating the block content 3 times.

php acorn seed:block accueil

This will seed the post with slug 'accueil' using default configuration, which will be all blocks available for the page template

Changelog

Please refer to CHANGELOG for more information.

Contributing

Please refer to CONTRIBUTING for more information.

License

Please refer to LICENSE for more information.