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
DELETE p, pm | |
FROM wp_posts p | |
INNER | |
JOIN wp_postmeta pm | |
ON pm.post_id = p.ID | |
WHERE p.post_type = 'page' | |
AND p.post_date < (NOW() - INTERVAL 120 DAY); |
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 App\Providers; | |
use Illuminate\Support\Facades\URL; | |
use Illuminate\Support\ServiceProvider; | |
use Illuminate\Support\Str; | |
class AppServiceProvider extends ServiceProvider | |
{ |
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 | |
/** | |
* Convert date and time from Excel into a PHP DateTime object | |
* | |
* Based on similar function from PHPExcel library. | |
* | |
* @see https://stackoverflow.com/a/11172688/401980 | |
* @see http://www.cpearson.com/excel/datetime.htm | |
*/ |
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
$args = [ | |
'post_type' => 'attachment', | |
'post_mime_type' => 'image', | |
'numberposts' => -1, | |
'post_status' => null, | |
'post_parent' => null, | |
]; | |
$attachments = get_posts($args); |
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 | |
// move admin bar to bottom of screen when viewing site | |
function benjibee_modify_adminbar() | |
{ | |
?> | |
<style> | |
div#wpadminbar { | |
top: auto; | |
bottom: 0; |
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 | |
// place in wp-content directory to | |
// automatically override default page | |
http_response_code(503); | |
wp_load_translations_early(); | |
?><!DOCTYPE html> | |
<html> |
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
// This script is meant to import Google Maps starred places into | |
// another Google account. | |
// Given a geoJSON file of Google Maps starred places (places.json) | |
// exported by Google takeout (account backup) this script should | |
// open each place URL and manually click save. | |
// Upon first run, it's best to stop it and manually login to your | |
// Google account otherwise you'll run into a non-verified device | |
// issue. Run again and it should continue through with problems. |
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
/* | |
* | |
* NOT YET IMPLEMENTED FUNCTIONALITY!! EEEEEEP!!!! | |
* | |
* Taken from ticket: #16784 | |
* https://core.trac.wordpress.org/attachment/ticket/16784/16784.diff | |
* | |
* NOT YET IMPLEMENTED FUNCTIONALITY!! EEEEEEP!!!! | |
* | |
* |
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 | |
/* | |
* ButBucket Webhook `git pull` automation v0.1 | |
* @author Benji Bilheimer | |
* | |
* If a directory matching the repository name is found | |
* in BASE_PATH, CD into that directory and run a git pull. | |
* | |
*/ |
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 | |
define('REPO_PATH', '/repositories/'); | |
define('STAGING_PATH', '/htdocs/dev/'); | |
define('PRODUCTION_PATH', '/htdocs/'); | |
$git = 'git'; | |
$update = false; |
NewerOlder