1. 在wp-content\plugins下隨意新增一資料夾,建立一隻php檔案,在這邊我是命名為Claire.php
2. 在Claire.php裡加入下列程式碼
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | <?php /* Plugin Name: Claire's PlugIn Version: 0.1 Description: 小佳的第一個插件 Author: ClaireChang Author URI: http://claire-chang.com Plugin URI: http://claire-chang.com */ /* 版本檢查 */ global $wp_version ; $exit_msg = '小佳的插件適用於wordpress2.5以上' ; if (version_compare( $wp_version , "2.5" , "<" )){ exit ( $exit_msg ); } /*產生FB按讚連結*/ function claireLink() { global $post ; $link =urlencode(get_permalink( $post ->ID)); $title =urlencode( $post ->post_title); $text =urlencode( substr ( strip_tags ( $post ->post_content), 0, 350)); return '<div id= "fb-root" ></div> <script src= "http://connect.facebook.net/zh_TW/all.js#appId=&xfbml=1" ></script> <fb:like href= "'.$link.'" send= "false" width= "450" show_faces= "true" font= "" ></fb:like>'; } /* 將按讚連結加至文章底下 */ function claireFilter( $content ){ return $content .claireLink(); } /* 增加hook */ add_filter( 'the_content' , 'claireFilter' ); ?> |