Changeset 344392
- Timestamp:
- 02/12/2011 02:43:40 AM (15 years ago)
- Location:
- wordpress-title-cloud/trunk
- Files:
-
- 4 edited
-
readme.txt (modified) (2 diffs)
-
wordpress-title-cloud.php (modified) (2 diffs)
-
wp-titlecloud.php (modified) (2 diffs)
-
wp-titlecloudadmin.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wordpress-title-cloud/trunk/readme.txt
r344389 r344392 5 5 Requires at least: 3.0 6 6 Tested up to: 3.0.5 7 Stable tag: 0.9. 77 Stable tag: 0.9.8 8 8 9 9 Act as a tag cloud but instead of showing tag, it shows the title of pages. … … 32 32 33 33 == Changelog == 34 35 = 0.9.8 = 36 *Fixed Bug from 0.9.7 34 37 35 38 = 0.9.7 = -
wordpress-title-cloud/trunk/wordpress-title-cloud.php
r344389 r344392 47 47 function cloud_visit($id){ 48 48 $visits=get_post_meta($id, "bezoekers",true); 49 $oStyle= json_decode(get_option('wp-titlecloud_styles')); 49 50 if( strlen(trim($visits))>0){ 50 51 if( $visits==0){ … … 54 55 } 55 56 }else{ 56 if($oStyle->auto== 1){57 if($oStyle->auto=='1'){ 57 58 add_post_meta($id, "bezoekers", 1); 58 59 }else{ -
wordpress-title-cloud/trunk/wp-titlecloud.php
r344389 r344392 2 2 /** 3 3 * @package Wordpress Title Cloud 4 * @version 0.9. 74 * @version 0.9.8 5 5 */ 6 6 /* … … 9 9 Description: An Idea of Displaying texts as tag cloud using your page titles. 10 10 Author: Burt Adem 11 Version: 0.9. 711 Version: 0.9.8 12 12 Author URI: http://burtadem.com/ 13 13 */ -
wordpress-title-cloud/trunk/wp-titlecloudadmin.php
r344389 r344392 12 12 $aProperty['smallest']=$_POST['txtSmallest']; 13 13 $aProperty['largest']=$_POST['txtLargest']; 14 $aProperty['auto']= =$_POST['ddlAuto'];14 $aProperty['auto']=$_POST['ddlAuto']; 15 15 16 16 update_option('wp-titlecloud_area', $area);
Note: See TracChangeset
for help on using the changeset viewer.