Created
April 20, 2020 10:36
-
-
Save hughc/f69e46c3b624d9bb180595f5567fc654 to your computer and use it in GitHub Desktop.
Gutenberg Audit for WordPress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Gutenberg Audit | |
Plugin URI: http://highbrow.com.au/plugins/gutenberg-audit | |
description: What blocks is your site using? | |
Version: 0.1 | |
Author: Hugh Campbell | |
Author URI: http://highbrow.com.au/ | |
License: GPL2 | |
*/ | |
function my_admin_menu() | |
{ | |
add_management_page( | |
'Gutenberg audit', | |
'Gutenberg audit', | |
'manage_options', | |
'gutenberg_audit', | |
'gutenberg_audit_contents', | |
'dashicons-schedule', | |
3 | |
); | |
} | |
add_action('admin_menu', 'my_admin_menu'); | |
function gutenberg_audit_contents() | |
{ | |
?> | |
<h1> | |
<?php esc_html_e('List of all blocks in use.', 'my-plugin-textdomain'); ?> | |
</h1> | |
<?php | |
$args = array( | |
'sort_order' => 'asc', | |
'sort_column' => 'post_title', | |
'hierarchical' => 1, | |
'exclude' => '', | |
'include' => '', | |
'meta_key' => '', | |
'meta_value' => '', | |
'authors' => '', | |
'child_of' => 0, | |
'parent' => -1, | |
'exclude_tree' => '', | |
'number' => '', | |
'offset' => 0, | |
'post_type' => 'page', | |
'post_status' => 'publish' | |
); | |
$pages = get_pages($args); // get all pages based on supplied args | |
$tally = []; | |
$pageBreakdown = []; | |
$recurseFunc = function ($page, $block) use (&$tally, &$pageBreakdown, &$recurseFunc) { | |
$blockName = $block['blockName']; | |
// echo "$blockName<br>"; | |
if (array_key_exists($blockName, $tally)) { | |
$tally[$blockName]++; | |
} else { | |
$tally[$blockName] = 1; | |
} | |
if (!array_key_exists($page->post_title, $pageBreakdown)) { | |
$pageBreakdown[$page->page_title] = []; | |
} | |
$pageList = &$pageBreakdown[$page->post_title]; | |
if (array_key_exists($blockName, $pageList)) { | |
$pageList[$blockName]++; | |
} else { | |
$pageList[$blockName] = 1; | |
} | |
// print_r($tally); | |
$inner = $block['innerBlocks']; | |
foreach ($inner as $innerBlock) { | |
$recurseFunc($page, $innerBlock); | |
} | |
}; | |
foreach ($pages as $page) { // $pages is array of object | |
$blocks = parse_blocks($page->post_content); | |
foreach ($blocks as $block) { | |
$recurseFunc($page, $block); | |
} | |
} | |
?> | |
<h2> | |
Block Breakdown | |
</h2> | |
<ul> | |
<?php | |
foreach ($tally as $blocktype => $value) { | |
echo sprintf('<li>%s - %s</li>', $blocktype, $value); | |
} | |
?> | |
</ul> | |
<h2> | |
Page Breakdown | |
</h2> | |
<?php | |
foreach ($pageBreakdown as $page_title => $pageTally) { | |
?> | |
<h2> | |
<?= $page_title ?> | |
</h2> | |
<ul> | |
<?php | |
foreach ($pageTally as $blocktype => $value) { | |
echo sprintf('<li>%s - %s</li>', $blocktype, $value); | |
} | |
?> | |
</ul> | |
<?php | |
} | |
// echo wp_sprintf('tally %s', print_r($tally, true)); | |
// echo wp_sprintf('pageList %s', print_r($pageBreakdown, true)); | |
} |
Super cool works!
How to show the permalinks for the pages?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I hadn't seen a simple summary of the usage of blocks across my site, so I wrote this simple single-file plugin that gets all published pages, and then iterates the blocks form the post body of each page and summarises them, both in overall totals, and per page breakdowns.