First let's make sure HB is updated. Open up terminal for the following steps.
$ brew update
<?php | |
declare(strict_types=1); | |
/** | |
* Create an override function, as to bypass Freemius in stupid plugins. | |
* @wordpress-muplugin | |
* Plugin Name: Freemius Killer | |
* Description: Global override for Freemius' "loader". | |
* Version: 1.0.0 |
<?php | |
declare(strict_types=1); | |
/** | |
* Remove global headers added by The Events Calendar. | |
* @wordpress-muplugin | |
* Plugin Name: TEC Remove Headers | |
* Description: Remove global headers added by The Events Calendar. | |
* Version: 1.0.0 |
name: "Deploy to Linode" | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
tag: |
/** global jQuery */ | |
(function ($) { | |
'use strict' | |
const requirements = { | |
$title: $('#title') | |
} | |
/** | |
* Initiate. |
<?php declare(strict_types=1); | |
/** | |
* Plugin Name: Demo App Passwords Client | |
*/ | |
namespace TimothyBJacobs\AppPasswordsClientDemo; | |
const META_KEY = '_app_passwords_client_demo_creds'; | |
const PAGE = 'app-passwords-demo'; |
<?php declare(strict_types=1); | |
/** | |
* Get Post By Slug | |
* @wordpress-plugin | |
* Plugin Name: Not Found Posts by Slug to 404 | |
* Description: Validate REST API requests by slug, and set proper response 404 status when not found. | |
* Author: Austin Passy | |
* Author URI: https://github.com/thefrosty | |
* Version: 1.0.0 |
add_shortcode( 'md5', 'md5_email_hash' ); | |
function md5_email_hash( $atts ) { | |
extract( shortcode_atts( array( | |
'hash' => '', | |
), $atts ) ); | |
$hash = ( isset( $_GET['email'] ) && !empty( $_GET['email'] ) ) ? $_GET['email'] : $hash; | |
$hash = is_email( $hash ) ? sanitize_email( strtolower( $hash ) ) : trim( $hash ); |
First let's make sure HB is updated. Open up terminal for the following steps.
$ brew update
<?php | |
/** | |
* WpRestApiCache Controller. | |
* This file extend the wp-rest-api-cache plugin that allows filtering of | |
* cache depending on conditions met. | |
* | |
* @package BeachbodyOnDemand\WpRestApiCache | |
*/ | |
namespace BeachbodyOnDemand\WpRestApiCache; |
<?php | |
namespace Dwnload\Plugins\Dovedi; | |
/** | |
* Class Add2faMetaBox | |
* | |
* @package Dwnload\Plugins\Dovedi | |
*/ | |
class Add2faMetaBox { |