Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #589230

    Hi

    is it possible to add some kind of google analytics or any other kind of stats in the admin?

    Anything simple but effective and easy to implement would be great – my client wants that. thanks

    #589344

    Hey!

    Try adding this at the very end of your theme / child theme functions.php file:

    <?php
    add_action('admin_footer', 'add_googleanalytics_to_admin');
    function add_googleanalytics_to_admin() { ?>
    // Paste your Google Analytics code here
    <?php } ?>
    

    Cheers!
    Josue

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.