04
02/15
wordpress微博同步插件
<?php /* Plugin Name: WP-Weibo Plugin URI: http://blog.peos.cn Description: Wordpress 分享到微博 Version: 1.0 Author: 数据库之家 Author URI: http://blog.peos.cn License: GPL2 */ function post_to_sina_weibo($post_ID) { if (wp_is_post_revision($post_ID)) return;//修订版本(更新)不发微博 //$get_post_info = get_post($post_ID); //$get_post_centent = get_post($post_ID)->post_content; $get_post_title = get_post($post_ID)->post_title; if ($...