Grazie a Brian Fegter . Se questa risposta aiuta, si prega di valutare la risposta di Brian proprio qui sopra.
Questo è un esempio perfettamente funzionante di come aggiungere elementi all'intestazione dal proprio plugin. In questo caso, sto aggiungendo le proprietà di Facebook Open Graph per i pulsanti Condividi e Mi piace.
Basta creare un file PHP con il nome specificato in "Plugin Script" all'inizio del codice di esempio, posizionarlo in una cartella con lo stesso nome senza estensione, ovviamente, e copiare questa cartella nella destinazione "/ wp-content / plugins".
Quindi in "Wordpress", aggiorna "Plugin" e vedrai il tuo nuovo plugin installato. Basta attivarlo e le tue pagine inizieranno a contenere i metadati di Open Graph Facebook e Twitter.
MOLTO IMPORTANTE: il file PHP deve essere codificato in UTF-8 senza distinta base e non deve assolutamente contenere caratteri alla fine. Deve garantire questo.
<?php
/*
Plugin Name: My Facebook Open Graph Protocol
Plugin Script: my-facebook-open-graph-protocol.php
Plugin URI:
Description: Add Facebook Open Graph Protocol to header
Author: Diego Soto (Thanks to Brian Fegter)
Donate Link:
License: GPL
Version: 0.1-alpha
Author URI: /wordpress/43672/how-to-add-code-to-header-php-in-a-child-theme
Text Domain: myfogp
Domain Path: languages/
*/
/* Copyright 2014 Diego Soto (http://disientoconusted.blogspot.com.ar/)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
add_action('wp_head', 'wpse_43672_wp_head');
function wpse_43672_wp_head(){
$title = get_the_title() ." ‹ ". get_bloginfo( "name", "display" );
$src = wp_get_attachment_image_src( get_post_thumbnail_id(get_the_ID()), array( 90,55 ), false, "" );
$face_metad = get_post_meta(get_the_ID(), "metadescription", true);
$twitter_metad = get_post_meta(get_the_ID(), "metadescription140", true);
if (empty($twitter_metad))
$twitter_metad = $face_metad;
//Close PHP tags
?>
<meta property="og:title" content="<?php echo esc_attr($title); ?>" />
<meta property="og:image" content="<?php echo esc_attr($src[0]); ?>" />
<meta property="og:url" content="<?php the_permalink(); ?>" />
<meta property="og:description" content="<?php if (!empty($face_metad)) echo esc_attr($face_metad); else the_excerpt(); ?>" />
<meta name="twitter:title" content="<?php echo esc_attr($title); ?>" />
<meta name="twitter:image" content="<?php echo esc_attr($src[0]); ?>" />
<meta name="twitter:url" content="<?php the_permalink(); ?>" />
<meta name="twitter:description" content="<?php if (!empty($twitter_metad)) echo esc_attr($twitter_metad); else the_excerpt(); ?>" />
<?php //Open PHP tags
}
?>
Chiunque sia interessato alla funzionalità del plugin.
Il titolo sarà la concatenazione del nome della pagina corrente e del nome del sito.
Se esiste un campo personalizzato chiamato "metadescription", il plugin tenta di prendere la descrizione da questo campo. Altrimenti, prendi la descrizione dall'estratto.
Come immagine, il plug-in tenta di utilizzare la miniatura dell'immagine in primo piano nella pagina.