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( 'woocommerce_register_form', 'custom_add_registration_privacy_policy', 11 ); | |
function custom_add_registration_privacy_policy() { | |
woocommerce_form_field( 'privacy_policy_reg', array( | |
'class' => array('form-row privacy'), | |
'input_class' => array('woocommerce-form__input woocommerce-form__input-checkbox input-checkbox'), | |
'label_class' => array('woocommerce-form__label woocommerce-form__label-for-checkbox checkbox'), | |
'label' => 'I\'ve read and accept the Privacy Policy', |
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
for file in es_ES-*.json ; do renamed="jeo-$file" ; mv "$file" "$renamed" ; done |
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: Simple Google reCAPTCHA | |
* Description: Simply protect your WordPress against spam comments and brute-force attacks, thanks to Google reCAPTCHA! | |
* Version: 3.8 | |
* Author: Michal Novák | |
* Author URI: https://www.novami.cz | |
* License: GPLv3 | |
* Text Domain: simple-google-recaptcha | |
*/ |
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 | |
/** | |
* @author https://wordpress.stackexchange.com/users/10097/david-gard | |
* @link https://wordpress.stackexchange.com/questions/176141/display-posts-by-month | |
*/ | |
$time_start = microtime(true); | |
/** Set up a date interval object for 6 monts ago (you can change as required) */ | |
$interval = new DateInterval('P6M'); |
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 | |
/** | |
* This file handles redirecting of our templates to our given views | |
* dir and anything else. | |
* | |
* Check if the themer has made a theme file in their | |
* theme dir, if not load our default. | |
* | |
* @uses template_redirect http://codex.wordpress.org/Plugin_API/Action_Reference/template_redirect | |
*/ |
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
.ratio { | |
// aspect-ratio: 16 / 9; | |
overflow: hidden; | |
position: relative; | |
&::before { | |
content: ""; | |
padding-top: 56.25%; | |
float: left; | |
} |
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 | |
/** | |
* | |
* Use this function when using the WPML plugin on your WordPress, | |
* to return all terms and all languages | |
* | |
* @author https://stackoverflow.com/users/2307600/alin-razvan | |
* @link https://stackoverflow.com/questions/66062846/wordpress-wpml-plugin-get-terms-returns-data-only-for-current-language-i-wan/#answer-66062847 | |
* @link https://developer.wordpress.org/reference/functions/get_terms/ |
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 ( get_query_var( 'paged' ) ) { | |
$paged = get_query_var( 'paged' ); | |
} else if ( get_query_var( 'page' ) ) { | |
$paged = get_query_var( 'page' ); | |
} else { | |
$paged = 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 | |
/** | |
* Change `post_tag` to hierarchical example | |
* | |
* @author Everaldo Matias <https://everaldo.dev> | |
* | |
* @see https://developer.wordpress.org/reference/hooks/init/ | |
* @see https://developer.wordpress.org/reference/functions/get_taxonomy/ | |
* @see https://developer.wordpress.org/reference/functions/register_taxonomy/ |
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
for F in *.png; do cwebp $F -o `basename ${F%.png}`.webp; done |