Changeset 116239
- Timestamp:
- 05/07/2009 08:51:47 PM (17 years ago)
- Location:
- retaggr/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
retaggr.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
retaggr/trunk/readme.txt
r109222 r116239 6 6 Requires at least: 2.0.4 7 7 Tested up to: 2.7.1 8 Stable tag: 1.0 48 Stable tag: 1.05 9 9 10 10 Add retaggr.com functionality to your blog - image tagging of any image,and totally customizable Profile Cards.Demo and help at http://www.retaggr.com … … 81 81 Modification to ensure no changes are made to any content going out to RSS feed. 82 82 83 = 1. 04 =83 = 1.14 = 84 84 Updates to ensure compatible with 2.7.1, minor cosmetics. 85 86 = 1.15 = 87 Fix to correct RSS issue. -
retaggr/trunk/retaggr.php
r109222 r116239 5 5 Description: Retaggr - Adds Retaggr social/business cards to your comments 6 6 Author: Retaggr 7 Version: 1.1 47 Version: 1.15 8 8 Author URI: http://www.retaggr.com/ 9 9 * Min WP Version: 2.0.4 … … 12 12 13 13 14 // Register our activation hook, so we can set our default options:15 register_activation_hook(_FILE_,'ri_activate');16 17 function ri_activate() {18 /*19 $ri_opt_siteid = get_option('ri_siteid');20 if ( empty($ri_opt_size) ) {21 $defaults = ri_defaults();22 foreach ($defaults as $key => $val) {23 update_option($key, $val);24 }25 }*/26 }27 28 14 add_action('admin_head', 'ri_css'); 29 15 add_action('wp_head', 'ri_css'); … … 31 17 32 18 function ri_author($author){ 19 if (is_feed()) return $author; 33 20 34 21 $email = get_the_author_email(); … … 90 77 91 78 function ri_retaggrcomment($text) { 79 if (is_feed()) return $text; 80 81 92 82 global $comment; 93 83 // emit retaggr card if email present
Note: See TracChangeset
for help on using the changeset viewer.