
This plugin contains patterns for you to check out, ranging from a simple text pattern to a more complex pattern containing both images and text.
Create WordPress Block Patterns
Fork
https://github.com/Praison/Patterns
Clone your new fork locally
git clone https://github.com/YOUR_USERNAME/Patterns.git
cd Patterns
Connect to original repository https://github.com/Praison/Patterns
git remote add --track master upstream https://github.com/Praison/Patterns.git
git fetch upstream
Create a new branch for your changes
git checkout -b YOUR_USERNAME upstream/master
Add your block patterns in index.php
register_block_pattern(
'praison-gutenberg-block-patterns/TITLE-OF-YOUR-BLOCK-PATTERN', # Add Hyphens between lowercase words
array(
'title' => __( 'TITLE_OF_YOUR_BLOCK_PATTERN', 'praison-gutenberg-block-patterns' ),
'content' => "BLOCK_PATTERN_GOES_HERE",
'categories' => array("CATEGORY"), # eg: columns, text ..etc
)
);
Add, Commit, Push
git add .
git commit -m "Added block pattern TITLE_OF_YOUR_BLOCK"
git push -u origin YOUR_USERNAME
Submit your pull request
Download & install the zip archive
The plugin package installer can be downloaded from the WP2E project tab called “code”.
1 – Select the version to download if this option is available otherwise the “latest” version of the main plugin will be used.
2 – After downloading the zip archive install the plugin package installer in you local environment and activate the script from the plugin list.
3 – Under the section “Plugins” of the admin dashboard you should see a new “Dependencies & Licenses” link. Follow the instructions from this panel to finalize the installation of the missing dependencies.
Tips: Use the WP2E panel to add/suggest new dependencies to the local installation. Press F5 in the list of dependencies if the changes are not displayed right away.