Merci à Brian Fegter . Si cette réponse vous aide, veuillez évaluer la réponse de Brian ici-haut.
Ceci est un exemple entièrement fonctionnel de la façon d'ajouter des choses à l '"en-tête" par son propre plugin. Dans ce cas, j'ajoute les propriétés de Facebook Open Graph pour les boutons Partager et J'aime.
Créez simplement un fichier PHP avec le nom spécifié dans "Plugin Script" au début de l'exemple de code, placez-le dans un dossier du même nom sans l'extension, évidemment, et copiez ce dossier vers la destination "/ wp-content / plugins ".
Ensuite, dans "Wordpress", actualisez "Plugins" et vous verrez votre nouveau plugin installé. Il suffit de l'activer et vos pages commenceront à contenir les métadonnées d'Open Graph Facebook et Twitter.
TRÈS IMPORTANT: Le fichier PHP doit être encodé en UTF-8 sans BOM, et ne doit avoir absolument aucun caractère à la fin. Doit assurer cela.
<?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
}
?>
Toute personne intéressée par la fonctionnalité du plugin.
Le titre sera la concaténation du nom de la page courante et du nom du site.
S'il existe un champ personnalisé appelé "metadescription", le plugin essaie de prendre la description de ce champ. Sinon, prenez la description de l'extrait.
Comme image, le plugin essaie d'utiliser la vignette de l'image sélectionnée sur la page.