Changeset 342271
- Timestamp:
- 02/08/2011 06:14:31 AM (15 years ago)
- Location:
- picasa-albums/trunk
- Files:
-
- 2 edited
-
plugin.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
picasa-albums/trunk/plugin.php
r342096 r342271 5 5 Plugin URI: http://mikhailkozlov.com/picasa-albums-for-wordpress/ 6 6 Description: Creates custom post type and displays picasa albums 7 Version: 1.0. 47 Version: 1.0.5 8 8 Author: Mikhail Kozlov 9 9 Author URI: http://mikhailkozlov.com … … 109 109 110 110 add_filter('the_content',array('wpPicasa','picasa_album_filter')); 111 111 // v 1.0.5 112 // some themes call the_exerpt(); 113 add_filter('the_excerpt',array('wpPicasa','picasa_album_filter')); 114 112 115 } 113 116 function add_custom_boxes(){ … … 282 285 if(isset($albums) && is_array($albums) && array_key_exists($aData['id'],$albums)){ 283 286 // update existing album. images will not be updated 284 self::insertAlbums($aData,$albums[$aData['id']]); 287 // v 1.0.5 288 // self::insertAlbums($aData,$albums[$aData['id']]); 289 // we used to update here, but people did not want this. 285 290 }else{ 286 291 //new album. images will BE imported -
picasa-albums/trunk/readme.txt
r342096 r342271 58 58 59 59 v. 1.0.4 60 60 61 * /admin/scripts.js - relative path for ajax requests per issue #5 in github. Thanks stephanvierkant. 61 62 * /plugin.php - simpleXml warning path not found possible fix. Thanks stephanvierkant. 62 63 64 v. 1.0.5 65 66 * removed album update. now albums only imported. all updates are done manually. Closes #7 67 * added the_excerpt() filter for better compatibility with custom themes
Note: See TracChangeset
for help on using the changeset viewer.