Skip to content

Instantly share code, notes, and snippets.

View mehrshaddarzi's full-sized avatar

Mehrshad Darzi mehrshaddarzi

View GitHub Profile
@mehrshaddarzi
mehrshaddarzi / run_time_microtime.php
Created April 6, 2024 08:47
Get Period Execute Run Time Script PHP (microtime)
// place this before any script you want to calculate time
$time_start = microtime(true);
// Check Time Spend
$time_end = microtime(true);
$execution_time = ($time_end - $time_start);
// Echo Date
echo date("H:i:s",$endtime-$starttime);
@mehrshaddarzi
mehrshaddarzi / option_cache_wordpress.php
Created January 31, 2024 03:58
Option Cache WordPress
// Check From Cache Option
if ($cache) {
$option = get_option('wp_hami_products');
if (!empty($option) and is_array($option) and isset($option['list']) and isset($option['expire']) and is_numeric($option['expire']) and $option['expire'] >= current_time('timestamp')) {
return [
'status' => true,
'list' => $option['list'],
'code' => $option['code'],
@mehrshaddarzi
mehrshaddarzi / Cronjob WordPress
Last active January 23, 2024 07:16
WordPress CronJob
```
mysqldump --column-statistics=0 --no-tablespaces --host="localhost" --user="xxxx" --password="xxx" "db_name" | gzip > ~/.backup-database/db_`date +\%Y-\%m-\%d_\%H-\%M-\%S`.sql.gz
```
```
wget -q -O - https://xxxx.com/wp-cron.php?doing_wp_cron >/dev/null 2>&1
```
```
wget -O /dev/null --spider --no-cache "https://xxx.com/?_sepidar_cron=product" >/dev/null 2>&1
@mehrshaddarzi
mehrshaddarzi / dynamic_domain_wordpress.php
Created January 2, 2024 10:33
Dynamic Domain WordPress
<?php
define('WP_SITEURL', 'https://' . $_SERVER['HTTP_HOST']);
define('WP_HOME', 'https://' . $_SERVER['HTTP_HOST']);
@mehrshaddarzi
mehrshaddarzi / fix_authordiv_widget_admin_wordpress.php
Created December 12, 2023 13:07
Fix AuthrDiv MetaBox for WordPress
<?php
// Replace Authirdiv MetaBox for Increase Edit Page Speed
add_action('do_meta_boxes', 'action_change_author_meta_box');
function action_change_author_meta_box($screen)
{
remove_meta_box('authordiv', $screen, 'core');
add_meta_box('authordiv', 'شناسه نویسنده', 'action_post_author_meta_box', $screen, 'advanced', 'high');
}
@mehrshaddarzi
mehrshaddarzi / disable_wordPress_plugin.php
Last active December 12, 2023 05:08
Disable WordPress plugin
<?php
/*
* Plugin Name: Activate Plugins
*/
add_filter( 'option_active_plugins', function ( $plugins ) {
$actual_link = (empty($_SERVER['HTTPS']) ? 'http' : 'https') . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
if(strtoupper($_SERVER['REQUEST_METHOD']) == "POST" and strpos($actual_link, 'admin-ajax.php') !== false and isset($_POST['action']) and $_POST['action'] == "irk_quick_cart"){
@mehrshaddarzi
mehrshaddarzi / woocommerce_delete_cancelled_order.php
Created December 3, 2023 10:21
Delete Cancelled WooCommerce Order Before X day Cron Job
<?php
add_action('wp', 'add_custom_wc_cron_job');
function add_custom_wc_cron_job()
{
if (!wp_next_scheduled('remove_cancelled_wc_orders')) {
wp_schedule_event(time(), 'hourly', 'remove_cancelled_wc_orders');
}
}
@mehrshaddarzi
mehrshaddarzi / disable-wordpress-email.php
Created November 27, 2023 05:17
Disable WordPress Email
<?php
/*
* Plugin Name: Disable WordPress Emails
*/
add_filter('pre_wp_mail', '__return_true');
@mehrshaddarzi
mehrshaddarzi / disable-wp-english-name-comment.php
Created October 5, 2023 08:46
Disable English Comment Name in WordPress
<?php
/*
* Plugin Name: Disable Comment Post
*/
add_action( 'pre_comment_on_post', function($comment_post_id) {
if(preg_match("/[a-z]/i", $_POST['author'])){
wp_die("نام خود را به فارسی وارد نمایید");
@mehrshaddarzi
mehrshaddarzi / disable-log-file.php
Created October 5, 2023 08:45
disable PHP v8 Log File in WordPress
<?php
@ini_set('log_errors','Off'); // enable or disable php error logging (use 'On' or 'Off')
@ini_set('display_errors','Off');