ga_accounts_selector.php
9 years ago
ga_auth_button.php
9 years ago
ga_code.php
6 years ago
ga_dashboard_widget.php
9 years ago
ga_debug_modal.php
8 years ago
ga_googleanalytics_loader.php
6 years ago
ga_notice.php
8 years ago
ga_oauth_notice.php
9 years ago
ga_wp_notice.php
9 years ago
page.php
6 years ago
statistics.php
9 years ago
stats.php
9 years ago
trending.php
8 years ago
ga_googleanalytics_loader.php
10 lines
| 1 | <script> |
| 2 | jQuery(document).ready(function () { |
| 3 | jQuery.post('<?php echo esc_attr( $ajaxurl ); ?>', {action: 'googleanalytics_get_script'}, function(response) { |
| 4 | var s = document.createElement("script"); |
| 5 | s.type = "text/javascript"; |
| 6 | s.innerHTML = response; |
| 7 | jQuery("head").append(s); |
| 8 | }); |
| 9 | }); |
| 10 | </script> |