$ openssl genrsa -out private.key 4096openssl req -new -sha256 \This document lists all the situations where WordPress sends an email, along with how to filter or disable each email.
This documentation has moved here: https://github.com/johnbillion/wp_mail
| <?php | |
| global $wpdb; | |
| $first_char = esc_attr($_GET[$search_key]); | |
| $postids = $wpdb->get_col($wpdb->prepare(" | |
| SELECT ID | |
| FROM $wpdb->posts | |
| WHERE SUBSTR($wpdb->posts.post_title,1,1) = %s | |
| AND $wpdb->posts.post_type = 'product' | 
| // 2024 Update, use URLSearchParams [https://caniuse.com/urlsearchparams] | |
| export function createQueryString2(name: string, value: string, searchParams: any) { | |
| const params = new URLSearchParams(searchParams); | |
| params.set(name, value.toLowerCase()); | |
| return params.toString(); | |
| } | |
| // ---- Original 2012 version, when browsers really sucked ---- | |
| // Explicitly save/update a url parameter using HTML5's replaceState(). |