Version Description
- Removed tracking of category and author due to complaints. We'll see later if there's a way to add it back in more wisely.
Download this release
Release Info
Developer | joostdevalk |
Plugin | Clicky by Yoast |
Version | 1.1.1 |
Comparing to | |
See all releases |
Code changes from version 1.1 to 1.1.1
- clicky.php +9 -6
- readme.txt +4 -1
clicky.php
CHANGED
@@ -420,12 +420,15 @@ function clicky_script() {
|
|
420 |
username: clicky_gc( 'comment_author_<?php echo md5( get_option("siteurl") ); ?>' ),
|
421 |
<?php
|
422 |
}
|
423 |
-
if ( is_single() ) {
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
|
|
|
|
|
|
429 |
?>
|
430 |
};
|
431 |
</script>
|
420 |
username: clicky_gc( 'comment_author_<?php echo md5( get_option("siteurl") ); ?>' ),
|
421 |
<?php
|
422 |
}
|
423 |
+
/* if ( is_single() ) {
|
424 |
+
echo "author: '";
|
425 |
+
the_author();
|
426 |
+
echo "',";
|
427 |
+
echo "category: '";
|
428 |
+
$cat = get_the_category();
|
429 |
+
echo $cat[0]->name;
|
430 |
+
echo "'";
|
431 |
+
} */
|
432 |
?>
|
433 |
};
|
434 |
</script>
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://yoast.com/
|
|
4 |
Tags: analytics, statistics, clicky
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 3.0
|
7 |
-
Stable tag: 1.1
|
8 |
|
9 |
Integrates the Clicky web analytics service and optionally the Clicky.me short URL service into your blog.
|
10 |
|
@@ -33,6 +33,9 @@ Integrates the Clicky web analytics service and optionally the Clicky.me short U
|
|
33 |
|
34 |
== Changelog ==
|
35 |
|
|
|
|
|
|
|
36 |
= 1.1 =
|
37 |
* Switched to the new asynchronous javascript.
|
38 |
* Added tracking of category and author as custom variables.
|
4 |
Tags: analytics, statistics, clicky
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 3.0
|
7 |
+
Stable tag: 1.1.1
|
8 |
|
9 |
Integrates the Clicky web analytics service and optionally the Clicky.me short URL service into your blog.
|
10 |
|
33 |
|
34 |
== Changelog ==
|
35 |
|
36 |
+
= 1.1.1 =
|
37 |
+
* Removed tracking of category and author due to complaints. We'll see later if there's a way to add it back in more wisely.
|
38 |
+
|
39 |
= 1.1 =
|
40 |
* Switched to the new asynchronous javascript.
|
41 |
* Added tracking of category and author as custom variables.
|