This file contains hidden or 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 | |
/** | |
* Block Converter. | |
* Convert HTML to Gutenberg Blocks. | |
* | |
* @package Tyme\BlockConverter | |
*/ | |
namespace Tyme; |
This file contains hidden or 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 | |
/** | |
* 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 ) { |
This file contains hidden or 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
DELETE from wp_#_postmeta WHERE meta_key = 'your-meta-key'; |