ขอขอบคุณที่ไบรอัน Fegter หากคำตอบนี้ช่วยได้โปรดให้คะแนนคำตอบของ Brianที่นี่ด้านบน
นี่เป็นตัวอย่างการทำงานที่สมบูรณ์ของวิธีเพิ่มสิ่งต่าง ๆ ใน "ส่วนหัว" โดยปลั๊กอินของตัวเอง ในกรณีนี้ฉันกำลังเพิ่มคุณสมบัติของ Facebook Open Graph สำหรับปุ่มแชร์และไลค์
เพียงสร้างไฟล์ PHP ด้วยชื่อที่ระบุใน "ปลั๊กอินสคริปต์" ที่ด้านบนของโค้ดตัวอย่างวางไว้ในโฟลเดอร์ที่มีชื่อเดียวกันโดยไม่มีนามสกุลชัดเจนและคัดลอกโฟลเดอร์นี้ไปยังปลายทาง "/ wp-content / ปลั๊กอิน"
จากนั้นใน "Wordpress" รีเฟรช "ปลั๊กอิน" และคุณจะเห็นปลั๊กอินใหม่ของคุณติดตั้ง เพียงเปิดใช้งานและหน้าของคุณจะเริ่มมีข้อมูลเมตาของ Open Graph Facebook และ Twitter
สำคัญมาก:ไฟล์ PHP จะต้องเข้ารหัสใน UTF-8 โดยไม่ต้องใช้ BOM และจะต้องไม่มีตัวอักษรใด ๆ ในตอนท้าย ต้องมั่นใจในสิ่งนี้
<?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
}
?>
ทุกคนที่มีความสนใจในการทำงานของปลั๊กอิน
ชื่อจะเป็นการต่อกันของชื่อของหน้าปัจจุบันและชื่อไซต์
หากมีฟิลด์แบบกำหนดเองที่เรียกว่า "metadescription" อยู่ปลั๊กอินจะพยายามใช้คำอธิบายจากฟิลด์นี้ มิฉะนั้นให้ใช้คำอธิบายจากข้อความที่ตัดตอนมา
ในฐานะที่เป็นรูปภาพปลั๊กอินพยายามใช้ภาพขนาดย่อของภาพเด่นบนหน้า