BIO
- Iscritto Maggio 23, 2023
- Online 3 Anni fa
- Utente verificato email verificata
- Lavori venduti 0
- Ordini in coda 0
/** * TABBID.COM - ORGANIZATION SCHEMA + OPEN GRAPH + RSS * Versione definitiva */add_action('wp_head', 'tabbid_custom_schema_and_meta', 999);function tabbid_custom_schema_and_meta() {/* * Esegui solamente sulla homepage */ if ( ! is_front_page() ) { return; }/* * ========================================================== * OPEN GRAPH * ========================================================== */echo "\n\n";echo '' . "\n";echo '' . "\n";echo '' . "\n";echo '' . "\n";echo '' . "\n";echo '' . "\n";echo '' . "\n";echo '' . "\n";/* * ========================================================== * RSS FEED DISCOVERY * ========================================================== */echo "\n\n";echo '' . "\n";/* * ========================================================== * ORGANIZATION SCHEMA * ========================================================== */$organization = array('@context' => 'https://schema.org','@type' => 'Organization','@id' => 'https://tabbid.com/#organization','name' => 'Tabbid','legalName' => 'Tabbid srls','url' => 'https://tabbid.com/','description' => 'Tabbid è una piattaforma online per trovare professionisti, offrire servizi e acquistare o vendere piccoli lavori.','logo' => array( '@type' => 'ImageObject', '@id' => 'https://tabbid.com/#logo', 'url' => 'https://tabbid.com/wp-content/uploads/2018/11/Tabbid-Il-Social-Network-dei-Lavoretti-2.png.webp', 'contentUrl' => 'https://tabbid.com/wp-content/uploads/2018/11/Tabbid-Il-Social-Network-dei-Lavoretti-2.png.webp' ),'sameAs' => array( 'https://www.facebook.com/tabbid.tabbid/', 'https://www.youtube.com/channel/UCtvEyxmp9NCCJEv1oqww8Jg', 'https://www.linkedin.com/company/5173903/' ));/* * ========================================================== * STAMPA JSON-LD * ========================================================== */echo "\n\n";echo '\n";echo "\n"; }