设置】 * Version: 1.1 * * Author: 高飞 * Author URI: http://addthis.org.cn */ if ( !defined('WP_CONTENT_URL') ) define( 'WP_CONTENT_URL', get_option('siteurl') . '/wp-content'); if ( !defined('WP_CONTENT_DIR') ) define( 'WP_CONTENT_DIR', ABSPATH . 'wp-content' ); // Guess the location $addthis_plugin_path = WP_CONTENT_DIR.'/plugins/'.plugin_basename(dirname(__FILE__)); $addthis_plugin_url = WP_CONTENT_URL.'/plugins/'.plugin_basename(dirname(__FILE__)); //$addthis_plugin_url = WP_CONTENT_URL.'/plugins/addthischina'; add_option("addthis_show", array("home", "page", "category", "archive", "search")); add_option("addthis_code", ""); $addthis_show = get_option("addthis_show"); $addthis_code = get_option("addthis_code"); add_action('admin_menu', 'addthis_admin_menu'); //增加管理导航 //add_action('wp_footer', 'addthis_wp_footer'); add_filter('the_content', 'addthis_the_content'); function addthis_the_content($content) { global $addthis_show, $addthis_code, $addthis_plugin_url; if ((is_home() && !addthis_checked_place("home")) || (is_page() && !addthis_checked_place("page")) || (is_category() && !addthis_checked_place("category")) || (is_archive() && !addthis_checked_place("archive")) || (is_feed() && !addthis_checked_place("feed")) || (is_search() && !addthis_checked_place("search"))) { return $content; } $addthis_u = get_permalink(); $addthis_t = get_the_title(); $addthis_d = has_excerpt() ? get_the_excerpt() : ""; $addthis_tag = addthis_get_tags(); $addthis_codeHtml = ''. $addthis_code; $addthis_codeHtml = preg_replace("/(name; } } return implode(",", $arr); } ?>