Skip to content

Instantly share code, notes, and snippets.

View Dan0sz's full-sized avatar
🤓
Geek-mode Initialized

Daan van den Bergh Dan0sz

🤓
Geek-mode Initialized
View GitHub Profile
@TylerB24890
TylerB24890 / block-converter.php
Created April 18, 2024 17:00
HTML to Gutenberg Block Converter
<?php
/**
* Block Converter.
* Convert HTML to Gutenberg Blocks.
*
* @package Tyme\BlockConverter
*/
namespace Tyme;
<?php
/**
* Filter the list of active plugins for custom endpoint requests.
*
* @param array $active_plugins The list of active plugins.
*
* @return array The filtered list of active plugins.
*/
function filter_active_plugins( $active_plugins ) {
@jennimckinnon
jennimckinnon / postMetaMS.sql
Last active September 26, 2021 20:20
Deleting post meta in WordPress Multisite.
DELETE from wp_#_postmeta WHERE meta_key = 'your-meta-key';