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
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"meta": { | |
"theme": "professional" | |
}, | |
"basics": { | |
"name": "Walter Franchetti", | |
"label": "Senior Backend Developer", | |
"image": "https://wa.lter.it/_vercel/image?url=_astro%2Ffrnwtr.4pxvWLgm.png&w=1080&q=100", | |
"email": "[email protected]", |
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
const WordpressPurgeCSS = { | |
whitelist: [ | |
"rtl", | |
"home", | |
"blog", | |
"archive", | |
"date", | |
"error404", | |
"logged-in", | |
"admin-bar", |
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
### Keybase proof | |
I hereby claim: | |
* I am frnwtr on github. | |
* I am frnwtr (https://keybase.io/frnwtr) on keybase. | |
* I have a public key whose fingerprint is 5C60 02A8 1C71 387C C94D 4F4D 019D 688B 8386 96B3 | |
To claim this, I am signing this object: |
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 facebook_cache_update( $post_id ) { | |
// If this is just a revision, don't update | |
if ( wp_is_post_revision( $post_id ) ) | |
return; | |
$url="https://graph.facebook.com/"; | |
$post_url = get_permalink( $post_id ); | |
$response = wp_remote_post( $url, array( |