Plugin Directory

Changeset 1069841


Ignore:
Timestamp:
01/17/2015 03:40:20 AM (11 years ago)
Author:
somatic
Message:
  • FIX: parse_query action hook repaired, had stopped working oddly
  • added demographics tracking line to google analytics code
Location:
somatic-framework/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • somatic-framework/trunk/inc/somaOptions.php

    r865419 r1069841  
    11211121
    11221122  ga('create', '<?php echo $ga; ?>', '<?php echo $site; ?>');
     1123  ga('require', 'displayfeatures');
    11231124  ga('send', 'pageview');
    11241125
  • somatic-framework/trunk/readme.txt

    r930166 r1069841  
    3232
    3333== Changelog ==
     34
     35= 1.8.11 =
     36* FIX: parse_query action hook repaired, had stopped working oddly
     37* added demographics tracking line to google analytics code
    3438
    3539= 1.8.10 =
  • somatic-framework/trunk/somaticFramework.php

    r930166 r1069841  
    109109
    110110        add_filter( 'query_vars', array(__CLASS__,'query_vars' ) );
    111         add_action( 'parse_request', array(__CLASS__, 'parse_request' ) );
     111        add_action( 'parse_request', array(__CLASS__, 'parse_request' ), 100, 2 );      // affects only the main query not queries made with wp_query!
    112112
    113113        // admin scripts and styles
Note: See TracChangeset for help on using the changeset viewer.