Agradecimentos a Brian Fegter . Se esta resposta ajudar, avalie a resposta de Brian aqui acima.
Este é um exemplo totalmente funcional de como adicionar itens ao "cabeçalho" por seu próprio plug-in. Neste caso, estou adicionando as propriedades do Facebook Open Graph para os botões Compartilhar e Curtir.
Basta criar um arquivo PHP com o nome especificado em "Plugin Script" no início do código de amostra, coloque-o em uma pasta com o mesmo nome sem a extensão, obviamente, e copie esta pasta para o destino "/ wp-content / plugins ".
Em "Wordpress", atualize "Plugins" e você verá seu novo plugin instalado. Basta ativá-lo e suas páginas começarão a conter os metadados do Open Graph Facebook e Twitter.
MUITO IMPORTANTE: O arquivo PHP deve ser codificado em UTF-8 sem BOM e não deve ter absolutamente nenhum caractere no final. Deve garantir isso.
<?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
}
?>
Qualquer pessoa interessada na funcionalidade do plug-in.
O título será a concatenação do nome da página atual e do nome do site.
Se existir um campo personalizado chamado "metadescription", o plug-in tenta obter a descrição desse campo. Caso contrário, pegue a descrição do trecho.
Como imagem, o plug-in tenta usar a miniatura da imagem em destaque na página.