Brian Fegter'a teşekkürler . Bu cevap yardımcı olursa, lütfen hemen yukarıdaki Brian'ın cevabını değerlendirin .
Bu, "üstbilgiye" kendi eklentisiyle bir şeyler nasıl ekleyeceğinizin tamamen işlevsel bir örneğidir. Bu durumda, Paylaş ve Beğen düğmeleri için Facebook Açık Grafik özelliklerini ekliyorum.
Örnek kodun başında "Eklenti Komut Dosyası" nda belirtilen bir PHP dosyası oluşturun, uzantı olmadan aynı ada sahip bir klasöre yerleştirin ve bu klasörü "/ wp-content / eklentiler".
Ardından "Wordpress" içinde "Eklentileri" yenileyin ve yeni eklentinizin kurulu olduğunu göreceksiniz. Sadece etkinleştirin ve sayfalarınız Açık Grafik Facebook ve Twitter meta verilerini içermeye başlayacaktır.
ÇOK ÖNEMLİ: PHP dosyası BOM olmadan UTF-8 olarak kodlanmalıdır ve sonunda kesinlikle hiçbir karakter bulunmamalıdır. Bunu sağlamalı.
<?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
}
?>
Eklentinin işlevselliği ile ilgilenen herkes.
Başlık, geçerli sayfanın adının ve site adının birleşimi olacaktır.
"Metadescription" adlı özel bir alan varsa, eklenti bu alandan açıklama almaya çalışır. Aksi takdirde, alıntıdan açıklamayı alın.
Resim olarak eklenti, sayfada öne çıkan resmin küçük resmini kullanmaya çalışır.