Changeset 2387180
- Timestamp:
- 09/23/2020 04:01:06 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
mouseflow-for-wordpress/trunk/mouseflow-for-wordpress.php
r2198792 r2387180 5 5 Description: 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>. 6 6 Author: Mouseflow 7 Version: 5.0. 27 Version: 5.0.3 8 8 Author URI: http://mouseflow.com 9 9 */ … … 11 11 //defined( 'ABSPATH' ) or die( 'No script kiddies please!' ); 12 12 $plugin = plugin_basename(__FILE__); 13 if(is_admin()){ 14 wp_enqueue_style('mouseflow_wp.css', plugins_url('mouseflow-for-wordpress/mouseflow_wp.css')); 13 14 function mf_admin_scripts() { 15 wp_enqueue_style('mouseflow_wp.css', plugins_url('mouseflow-for-wordpress/mouseflow_wp.css')); 15 16 } 17 add_action( 'admin_enqueue_scripts', 'mf_admin_scripts' ); 16 18 17 19 function mouseflow_addOptions()
Note: See TracChangeset
for help on using the changeset viewer.