Plugin info

Total downloads: 1,327
Active installs: 10
Total reviews: 1
Average rating: 5
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 9/17/2020 (1931 days ago)
Added to WordPress: 9/16/2020 (5 years old)
Minimum WordPress version: 5.0
Tested up to WordPress version: 5.5.16
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 1931 days ago • 1 reviews

22/100

Is WordPress Block Patterns Plugin abandoned?

Possibly abandoned (last update 1931 days ago).

Compatibility

Requires WordPress: 5.0
Tested up to: 5.5.16
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

Patterns Kit
Rating 1.0/5 (1 reviews)Active installs 4,000
Pattern Manager
Rating 5.0/5 (5 reviews)Active installs 400
Pattern
Rating 0.0/5 (0 reviews)Active installs 10
Reusable Blocks Extended
Rating 4.8/5 (40 reviews)Active installs 20,000

Description

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

Add your block patterns to this plugin

  1. Fork

    https://github.com/Praison/Patterns
    
  2. Clone your new fork locally

    git clone https://github.com/YOUR_USERNAME/Patterns.git
    cd Patterns
    
  3. Connect to original repository https://github.com/Praison/Patterns

    git remote add --track master upstream https://github.com/Praison/Patterns.git
    git fetch upstream
    
  4. Create a new branch for your changes

    git checkout -b YOUR_USERNAME upstream/master
    
  5. 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
        )
    );
    
  6. Add, Commit, Push

    git add .
    git commit -m "Added block pattern TITLE_OF_YOUR_BLOCK"
    git push -u origin YOUR_USERNAME
    
  7. Submit your pull request

Installation

Steps

  1. Download the zip file
  2. Extract the contents
  3. Upload the folder patterns to your WP plugin folder /wp-content/plugins/ directory
  4. Go to Plugins > Plugins, and activate the plugin

Frequently Asked Questions

No FAQ available

Review feed

Mervin Praison
9/16/2020

Ability to add your Block patterns

Ability to add your Block patterns

Screenshots

Changelog

Version 1.0

  • First release