This file contains hidden or 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 change_yoast_seo_og_meta() { | |
add_filter( 'wpseo_opengraph_desc', 'change_desc' ); | |
} | |
function change_desc( $desc ) { | |
// This article is actually a landing page for an eBook | |
if( is_singular( 123 ) ) { |
This file contains hidden or 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
/*--- images ----------*/ | |
import imagemin from 'gulp-imagemin'; | |
import imageminJpegtran from 'imagemin-jpegtran'; | |
import imageminPngquant from 'imagemin-pngquant'; | |
import imagemingifsicle from 'imagemin-gifsicle'; | |
//import imageminSVG from 'imagemin-svgo'; | |
function images(cb) { |
This file contains hidden or 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
# ignore everything in the directory, example: | |
# * | |
# !wp-content/ | |
# wp-content/* | |
# !wp-content/themes/ | |
# wp-content/themes/* | |
# !wp-content/themes/spk7sy | |
# !wp-content/themes/spk7sy/* | |
This file contains hidden or 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 | |
/** | |
* Updates product prices. | |
* More about WP CLI scripts: | |
* https://wptheming.com/2021/05/wp-cli-scripts-and-woocommerce/ | |
* | |
* wp eval-file update-product-prices.php | |
*/ | |
$products = get_posts([ |
This file contains hidden or 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
More recent resolution: | |
1. cd ~/../../etc (go to etc folder in WSL). | |
2. echo "[network]" | sudo tee wsl.conf (Create wsl.conf file and add the first line). | |
3. echo "generateResolvConf = false" | sudo tee -a wsl.conf (Append wsl.conf the next line). | |
4. wsl --terminate Debian (Terminate WSL in Windows cmd, in case is Ubuntu not Debian). | |
5. cd ~/../../etc (go to etc folder in WSL). | |
6. sudo rm -Rf resolv.conf (Delete the resolv.conf file). | |
7. In windows cmd, ps or terminal with the vpn connected do: Get-NetIPInterface or ipconfig /all for get the dns primary and | |
secondary. |
This file contains hidden or 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
#### TRY | |
### https://gitmemory.cn/repo/nezhar/wordpress-docker-compose/issues/74 | |
### | |
### | |
### | |
### | |
version: "3.9" | |
services: |
This file contains hidden or 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
<? | |
/** | |
* Get terms for this tax (cpt category) | |
*/ | |
$term_id = null; | |
$taxonomy = NULL; | |
$queried_object = get_queried_object(); | |
if ( !$queried_object == NULL && !is_search() && !is_404() ) { |
This file contains hidden or 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
var elementNameHere = document.getElementsByClassName("classs-first-element-check"); | |
if ( elementNameHere ) { | |
for ( var i = 0, len = elementNameHere.length; i < len; i++ ) { | |
console.log( len[i] ); | |
} | |
} |
This file contains hidden or 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
/** | |
* https://docs.woocommerce.com/document/composite-products/composite-products-js-api-reference/ | |
* https://wordpress.stackexchange.com/questions/342148/list-of-js-events-in-the-woocommerce-frontend | |
*/ | |
//Woocommerce Checkout JS events | |
$( document.body ).trigger( 'init_checkout' ); | |
$( document.body ).trigger( 'payment_method_selected' ); | |
$( document.body ).trigger( 'update_checkout' ); | |
$( document.body ).trigger( 'updated_checkout' ); |
This file contains hidden or 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
barba.hooks.before((data) => { | |
const cols = document.querySelector('.site-branding'); | |
gsap.to(cols, { | |
autoAlpha: 0, | |
}); | |
}); | |
barba.hooks.after((data) => { |