Skip to content

Instantly share code, notes, and snippets.

View oscarhugopaz's full-sized avatar
🍔
Siempre tengo hambre

Oscar Hugo Paz oscarhugopaz

🍔
Siempre tengo hambre
View GitHub Profile
@oscarhugopaz
oscarhugopaz / change-url-via-db
Last active November 18, 2024 16:13
change-url-via-db #sql
UPDATE wp_options
SET option_value = replace(option_value, 'https://domain.com', 'https://domain.local')
WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts
SET guid = replace(guid, 'https://domain.com', 'https://domain.local');
UPDATE wp_posts
SET post_content = replace(post_content, 'https://domain.com', 'https://domain.local');
@oscarhugopaz
oscarhugopaz / remove-wc-zoom-lightbox
Created June 7, 2022 18:50
remove-wc-zoom-lightbox #wc
remove_theme_support( 'wc-product-gallery-zoom' );
remove_theme_support( 'wc-product-gallery-lightbox' );