Cảm ơn Brian Fegter . Nếu câu trả lời này có ích, vui lòng đánh giá câu trả lời của Brian ngay tại đây.
Đây là một ví dụ đầy đủ chức năng về cách thêm mọi thứ vào "tiêu đề" bằng plugin riêng của nó. Trong trường hợp này, tôi đang thêm các thuộc tính của Facebook Open Graph cho các nút Chia sẻ và Thích.
Chỉ cần tạo một tệp PHP có tên được chỉ định trong "Tập lệnh Plugin" ở đầu mã mẫu, đặt nó vào một thư mục có cùng tên mà không có phần mở rộng, rõ ràng và sao chép thư mục này đến đích "/ wp-content / bổ sung".
Sau đó, trong "Wordpress", làm mới "Plugin" và bạn sẽ thấy plugin mới của mình được cài đặt. Chỉ cần Kích hoạt nó và các trang của bạn sẽ bắt đầu chứa siêu dữ liệu của Open Graph Facebook và Twitter.
RẤT QUAN TRỌNG: Tệp PHP phải được mã hóa bằng UTF-8 mà không có BOM và hoàn toàn không có ký tự nào ở cuối. Phải đảm bảo điều này.
<?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
}
?>
Bất cứ ai quan tâm đến chức năng của plugin.
Tiêu đề sẽ là nối tên của trang hiện tại và tên trang web.
Nếu một trường tùy chỉnh được gọi là "siêu dữ liệu" tồn tại, plugin sẽ cố gắng lấy mô tả từ trường này. Nếu không, hãy lấy mô tả từ đoạn trích.
Là hình ảnh, plugin cố gắng sử dụng hình thu nhỏ của hình ảnh nổi bật trên trang.