Skip to content

en Hooks

timse201 edited this page Jan 25, 2017 · 9 revisions

Language: en, de

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:

statify__skip_tracking

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

statify__user_can_see_stats

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


Jumping marks