Skip to content

Instantly share code, notes, and snippets.

@jrtaylor-com
jrtaylor-com / functions.php
Created October 29, 2023 15:07 — forked from sirbrillig/functions.php
Post file using wp_remote_post in WordPress
<?php
$local_file = 'file_path'; //path to a local file on your server
$post_fields = array(
'name' => 'value',
);
$boundary = wp_generate_password( 24 );
$headers = array(
'content-type' => 'multipart/form-data; boundary=' . $boundary,
);
@jrtaylor-com
jrtaylor-com / street-suffix-abbreviations.json
Created February 18, 2024 15:11 — forked from mick-io/street-suffix-abbreviations.json
C1 Street Suffix Abbreviations from USPS. The keys represent the USPS standard abbreviations, the arrays contain primary and commonly used suffixes and abbreviations.
{
"ALY": [
"ALLEY",
"ALLEE",
"ALLY"
],
"ANX": [
"ANEX",
"ANNEX",
"ANNX"