This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Change PMPro to only track visits for logged in users. | |
| * Add this code into a custom plugin or code snippet. | |
| */ | |
| function my_pmpro_report_login_wp_visits_only_for_users() { | |
| if ( ! is_user_logged_in() ) { | |
| remove_action( 'wp', 'pmpro_report_login_wp_visits' ); | |
| } | |
| } | |
| add_action( 'init', 'my_pmpro_report_login_wp_visits_only_for_users' ); |
OlderNewer