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 (!class_exists('WP_Terms_Nested')) { | |
class WP_Terms_Nested | |
{ | |
public static function get($arg = []): 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 | |
function get_attributes_by_product_cat($category_slug = null, $cacheHour = 6) | |
{ | |
global $wpdb; | |
// Check Product Cat Slug | |
if (is_null($category_slug)) { | |
$query_object = get_queried_object(); | |
$category_slug = $query_object->slug ?? ''; |
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
<style> | |
.modal-window { | |
position: fixed; | |
background-color: rgba(255, 255, 255, 0.25); | |
top: 0; | |
right: 0; | |
bottom: 0; | |
left: 0; | |
z-index: 999; | |
visibility: hidden; |
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
// 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); |
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
// 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'], |
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
``` | |
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 |
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('WP_SITEURL', 'https://' . $_SERVER['HTTP_HOST']); | |
define('WP_HOME', 'https://' . $_SERVER['HTTP_HOST']); |
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: 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"){ |
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_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'); | |
} | |
} |
NewerOlder