Skip to content

Instantly share code, notes, and snippets.

View azamatx's full-sized avatar

Azamat azamatx

  • Tashkent, Uzbekistan.
View GitHub Profile
@azamatx
azamatx / search-replace.bash
Created November 22, 2024 08:27
WP CLI search & replace
wp search-replace 'Places' 'Waters' --all-tables --precise
wp search-replace 'places' 'waters' --all-tables --precise
wp search-replace 'Place' 'Water' --all-tables --precise
wp search-replace 'place' 'water' --all-tables --precise
@azamatx
azamatx / uzbekistan-regions-seeder.php
Last active October 30, 2024 04:01
Uzbekistan regions seeder for WordPress taxonomy
<?php
function seed_regions_if_requested() {
if ( ! isset( $_GET['seed-regions'] ) ) {
return;
}
$regions = [
[
"name" => "Qoraqalpog'iston Respublikasi",
"districts" => [
@azamatx
azamatx / add_action_print_r_debug.json
Last active November 9, 2021 09:02
VS Code WordPress add_action print_r debug
"add_action_print": {
"prefix": "add",
"body": [
"add_action('init', function() {",
"\tif (isset(\\$_GET['devpre'])) {",
"\t\t\\$templates = get_option('wpb_js_templates');",
"\t\techo '<pre>';",
"\t\tprint_r(\\$templates);",
"\t\techo '</pre>';",
"\t\texit;",