Changeset 220876
- Timestamp:
- 03/23/2010 10:55:49 AM (16 years ago)
- Location:
- at-internet-analyzer-ii/trunk
- Files:
-
- 2 added
- 2 edited
-
ATI_Focus_Plug-in-WordPress_EN.pdf (added)
-
ATI_Focus_Plug-in_WordPress_FR.pdf (added)
-
analyzerII.php (modified) (1 diff)
-
lib/functions.inc.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
at-internet-analyzer-ii/trunk/analyzerII.php
r207560 r220876 5 5 Description: Analyzer II Plugin for Wordpress 6 6 Author: AT INTERNET 7 Version: 1.1.00 37 Version: 1.1.004 8 8 */ 9 9 require_once realpath(dirname(__file__) . '/lib/config_analyzerII.php'); -
at-internet-analyzer-ii/trunk/lib/functions.inc.php
r207558 r220876 70 70 $ergo='homepage_ergo'; 71 71 } 72 else{ 73 $xtpage=sanitize_title( the_title('','',FALSE));72 else{ 73 $xtpage=sanitize_title(wp_title('',FALSE)); 74 74 // Static pages. 75 75 if(is_page()){ … … 81 81 $ergo='posts_ergo'; 82 82 //Belongs to only one category. 83 if( count(get_the_category())==1){83 if((count(get_the_category())==1)&&(is_single())){ 84 84 $cat=get_the_category(); 85 $catName=$cat[0]->cat_name; 86 $xtpage='posts_blogs::'. $catName.'::'.$xtpage;87 } 85 $catName=$cat[0]->cat_name; 86 $xtpage='posts_blogs::'.sanitize_title($catName).'::'.$xtpage; 87 } 88 88 else{ 89 89 $xtpage='posts_blogs::'.$xtpage;
Note: See TracChangeset
for help on using the changeset viewer.