-
-
Notifications
You must be signed in to change notification settings - Fork 24
en Hooks
Hooks allow to the user to extend the functional extent of a WordPress-Plugins. The following Hooks are deposited in Statify and can be addressed or controlled via code:
Customized control of page counting, e.g. for page type, user rights, browser type. In this way, all or certain blog pages can be excluded from counting.
With the return value true
Statify does not consider the currently called blog page.
Code example:
add_filter(
'statify__skip_tracking',
function() {
if ( 1 === 1 ) {
return true;
}
return false;
}
);
Implementation: Statify 1.2.6
Anzeigesteuerung der Dashboard-Statistiken für Nicht-Administratoren. Der Zugriff auf das Dashboard-Widget mit WordPress-Statistiken kann punktuell pro Nutzer oder Nutzergruppe gewährt werden.
Der Rückgabewert true
erlaubt den Zugang zur Statistik. Das Bearbeiten der Plugin-Einstellungen im Widget bleibt weiterhin ausschließlich Anwendern mit der Benutzerrolle edit_dashboard vorbehalten.
Code example:
add_filter(
'statify__user_can_see_stats',
'__return_true'
);
Implementation: Statify 1.3.1