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 | |
namespace Gutenberg_Performance; | |
/** | |
* Removes the Synced Patterns (reusable blocks) from the preload paths. | |
* Performance improvement for sites with large number of these blocks. | |
* | |
* @param array $paths Paths. | |
* |
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 | |
// Add the Twilio library via composer | |
require_once( __DIR__ . '/vendor/autoload.php' ); | |
// Use the Twilio REST API Client | |
use Twilio\Rest\Client; | |
class Twilio_Gateway { | |
// Fill these in - see your Twilio dashboard |