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 | |
/** | |
* Plugin Name: User Migration CLI Command (MU) | |
* Author: Christoph Daum | |
* Author URL: https://christoph-daum.com | |
* Description: Adds a WP-CLI command 'migrate' to anonymize user data, reset passwords, and update meta. | |
* | |
* Version: 1.0 | |
* License: GPL2 | |
*/ |
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 | |
/** | |
* This is a snippet if your WordPress plugin uses composer autoloading. | |
* | |
* Instead of just dying, it will fail gracefully and add an admin notice to the backend, | |
* informing the dev to run the autoloader. | |
* | |
* Could also be adjusted to check for other things like a /build/ folder or similar things. | |
* |
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_filter( 'heartbeat_settings', 'filter_heartbeat', 10, 1 ); | |
/** | |
* Filter the heartbeat interval based on the current request. | |
* | |
* Called on the 'heartbeat_settings' filter. | |
* | |
* @param array $settings The Heartbeat settings. By Default an empty array. | |
* |
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 | |
/** | |
* A class to create custom tables within WordPress. | |
* | |
* @version 1.0.0 | |
*/ | |
namespace apermo\WPTools; | |
use Exception; |
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 | |
if ( ! defined( 'PHP_SAPI' ) || PHP_SAPI !== 'cli' ) { | |
exit( 'You shall not pass' ); | |
// echo '<pre>'; | |
// set_time_limit( 0 ); | |
} | |
$dir = $argv[1] ?? __DIR__; | |
// Load wp-config to make sure we can use WordPress. |
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
<html> | |
<head> | |
<style type="text/css"> | |
textarea { | |
width: 100%; | |
height: 300px; | |
} | |
td { | |
border: 2px dashed grey; | |
padding: 1em; |
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 | |
/** | |
* Plugin Name: Timed redirect | |
* Description: Redirects all traffic to [hardcoded domain] starting [hardcoded time] | |
* Version: 1.0.0 | |
* Author: Christoph Daum | |
*/ | |
// Mind possible UTC time differences here. |
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 | |
require_once 'wp-config.php'; | |
// Add your desired credentials here. Using these is a super bad idea. | |
//$user = 'YOUR USERNAME'; | |
//$pass = 'YOUR_SUPER_SECURE_PASSWORD'; | |
//$email = 'YOUR@ADMIN_EMAIL.ADDRESS'; | |
if ( ! username_exists( $user ) && ! email_exists( $email ) ) { |
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 | |
// File is older than 1 hour, better delete this. | |
if ( filemtime( __FILE__ ) + 3600 < time() ) { | |
unlink( __FILE__ ); | |
header( "HTTP/1.0 404 Not Found" ); | |
exit(); | |
} | |
phpinfo(); |
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 | |
/** | |
* Contains Class Settings_Abstract | |
*/ | |
if ( ! defined( 'ABSPATH' ) ) { | |
header( 'HTTP/1.0 404 Not Found' ); | |
exit( 'You shall not pass' ); | |
} |
NewerOlder