Terima kasih untuk Brian Fegter . Jika jawaban ini membantu, beri peringkat untuk jawaban Brian di sini.
Ini adalah contoh yang berfungsi penuh tentang cara menambahkan sesuatu ke "header" dengan plugin sendiri. Dalam hal ini, saya menambahkan properti Facebook Open Graph untuk tombol Bagikan dan Suka.
Cukup buat file PHP dengan nama yang ditentukan dalam "Plugin Script" di awal kode sampel, letakkan di folder dengan nama yang sama tanpa ekstensi, jelas, dan salin folder ini ke tujuan "/ wp-content / plugin ".
Kemudian di dalam "Wordpress", segarkan "Plugin" dan Anda akan melihat plugin baru Anda terpasang. Aktifkan saja, dan halaman Anda akan mulai berisi metadata dari Open Graph Facebook dan Twitter.
SANGAT PENTING: File PHP harus dikodekan dalam UTF-8 tanpa BOM, dan pada akhirnya tidak boleh memiliki karakter sama sekali. Harus memastikan ini.
<?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
}
?>
Siapa pun yang tertarik dengan fungsionalitas plugin.
Judul akan menjadi gabungan dari nama halaman saat ini dan nama situs.
Jika bidang khusus yang disebut "metadescription" ada, plugin mencoba mengambil deskripsi dari bidang ini. Kalau tidak, ambil deskripsi dari kutipan.
Sebagai gambar, plugin mencoba menggunakan thumbnail gambar yang ditampilkan pada halaman.