Plugin Directory

Changeset 2387180


Ignore:
Timestamp:
09/23/2020 04:01:06 PM (5 years ago)
Author:
mouseflow
Message:

Update 5.5.1 + style enque

File:
1 edited

Legend:

Unmodified
Added
Removed
  • mouseflow-for-wordpress/trunk/mouseflow-for-wordpress.php

    r2198792 r2387180  
    55Description: Integrate Mouseflow analytics on your website. Login to your <a href="admin.php?page=mouseflow-dashboard">Mouseflow dashboard</a>. Create a free account <a href="https://mouseflow.com/sign-up/" target="_blank">here</a>, and paste in your tracking code <a href="admin.php?page=mouseflow-for-wordpress">here</a>.
    66Author: Mouseflow
    7 Version: 5.0.2
     7Version: 5.0.3
    88Author URI: http://mouseflow.com
    99*/
     
    1111//defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
    1212$plugin = plugin_basename(__FILE__);
    13 if(is_admin()){
    14     wp_enqueue_style('mouseflow_wp.css', plugins_url('mouseflow-for-wordpress/mouseflow_wp.css'));
     13
     14function mf_admin_scripts() {
     15  wp_enqueue_style('mouseflow_wp.css', plugins_url('mouseflow-for-wordpress/mouseflow_wp.css'));
    1516}
     17add_action( 'admin_enqueue_scripts', 'mf_admin_scripts' );
    1618
    1719function mouseflow_addOptions()
Note: See TracChangeset for help on using the changeset viewer.