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> | |
.showHide__txt { | |
display: flex; | |
flex-direction: column; | |
gap: 8px; | |
} | |
.showHide__btn { | |
text-decoration-thickness: 2px !important; | |
text-underline-offset: 2px !important; | |
} |
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
// Define your source and target taxonomies, as well as the post type (optional) | |
$source_taxonomy = 'project-category'; // Source taxonomy | |
$target_taxonomy = 'project-tag'; // Target taxonomy | |
$post_type = 'project'; // Replace with your post type, or leave empty for all | |
// Function to copy terms from the source taxonomy to the target taxonomy | |
function copy_taxonomy_terms( $source_taxonomy, $target_taxonomy, $post_type = '' ) { | |
// Step 1: Get all posts in the specified post type with terms from the source taxonomy | |
$args = array( | |
'post_type' => $post_type ?: 'any', // Use 'any' for all post types if not specified |
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
/*! | |
* Dark Mode Switch v1.0.1 (https://github.com/coliff/dark-mode-switch) | |
* Copyright 2021 C.Oliff | |
* Licensed under MIT (https://github.com/coliff/dark-mode-switch/blob/main/LICENSE) | |
*/ | |
var darkSwitch=document.getElementById("darkSwitch");window.addEventListener("load",(function(){if(darkSwitch){initTheme();darkSwitch.addEventListener("change",(function(){resetTheme()}))}}));function initTheme(){var darkThemeSelected=localStorage.getItem("darkSwitch")!==null&&localStorage.getItem("darkSwitch")==="dark";darkSwitch.checked=darkThemeSelected;darkThemeSelected?document.body.setAttribute("data-theme","dark"):document.body.removeAttribute("data-theme")}function resetTheme(){if(darkSwitch.checked){document.body.setAttribute("data-theme","dark");localStorage.setItem("darkSwitch","dark")}else{document.body.removeAttribute("data-theme");localStorage.removeItem("darkSwitch")}} |
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
add_action('admin_menu', 'smtp_test_email_menu'); | |
function smtp_test_email_menu() { | |
add_menu_page( | |
'SMTP Test Email', // Page title | |
'SMTP Test Email', // Menu title | |
'manage_options', // Capability | |
'smtp-test-email', // Menu slug | |
'smtp_test_email_page' // Callback function | |
); |
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
//In functions.php | |
//Custom SMTP | |
/** Custom SMTP Settings */ | |
function custom_phpmailer_smtp( $phpmailer ) { | |
$phpmailer->isSMTP(); | |
$phpmailer->Host = SMTP_HOST; | |
$phpmailer->SMTPAuth = true; | |
$phpmailer->Port = SMTP_PORT; | |
$phpmailer->Username = SMTP_USER; |
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
No need of changing any thing in the .conf file just follow the following steps | |
Step 1: First check whether redis-server is working or not | |
$ redis-cli | |
127.0.0.1:6379> ping | |
PONG | |
if the reply is PONG then your server is working absolutely fine. | |
Step 2: To get the current max memory run the following commands: |
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: Check and Delete Media | |
Description: Check all media items and delete entries if the images are not in the uploads folder. Display the total number of missing files and delete on button click. | |
Version: 1.2 | |
Author: Joy Chetry | |
*/ | |
if ( ! defined( 'ABSPATH' ) ) { | |
exit; // Exit if accessed directly. |
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
define('WP_REDIS_CONFIG', [ | |
'token' => 'your_token_key', | |
'host' => '127.0.0.1', | |
'port' => 6379, | |
'database' => 0, // change for each site | |
'maxttl' => 3600 * 24 * 7, // 7 days | |
'timeout' => 1.0, | |
'read_timeout' => 1.0, | |
'prefetch' => true, | |
'split_alloptions' => true, |
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
Before we explain the detailed way, there is a quick solution to get rid of WooCommerce data completely. | |
Open your site’s wp-config.php file through FTP or File Manager. | |
Scroll towards the bottom, add this line: | |
define(‘WC_REMOVE_ALL_DATA’, true); | |
Make sure to use straight quotation marks and add the code on its own line above the / That’s all, stop editing! Happy blogging. / line in the file, around line 76 of the file. | |
Save the file to the server. | |
Press “Deactivate” > “Delete” to remove the plugin from your admin panel. | |
You can again go back and remove the above code from the wp-config file. Then when you deactivate and delete WooCommerce it will remove all of its data from your WordPress database. |
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
::-webkit-scrollbar{ | |
width: 4px; | |
border-radius: 4px; | |
margin-left: 4px; | |
} | |
::-webkit-scrollbar-track{ | |
background: rgba(0, 0, 0, 0.1); | |
} |
NewerOlder