Skip to content

recoded-dev/wordpress-block-parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WordPress Block Parser

Parse WordPress edit-context content to PHP objects easily.

Installation

composer require recoded-dev/wordpress-block-parser

Examples

Parsing and replacing

<?php

use Recoded\WordPressBlockParser\BlockParser;
use Recoded\WordPressBlockParser\Blocks\Block;
use Recoded\WordPressBlockParser\BlockReplacer;

$content = <<<HTML
<!-- wp:paragraph -->
Test
<!-- /wp:paragraph -->
HTML;

$parser = BlockParser::create($content);
$replacer = BlockReplacer::create($content);

foreach ($parser as $block) {
    // $block->namespace
    // $block->name
    // $block->attributes

    if ($block instanceof Block) {
        // $block->content
    }

    $replacer->replace($block, 'Your replaced content');
}

echo (string) $replacer; // Your replaced content

Contributing

Everyone is welcome to contribute. Feel free to PR your work once you think it's ready. Or open a draft-PR if you want to get some opinions or further help.

I would like to keep this package relatively small and want to avoid bloat. The package should remain extensible and unopinionated.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages