Recent

tptn_popular_posts_widget_output filter

Filters the dashboard widget output

Type: filter
Since: 3.3.0
Source: includes/admin/class-dashboard-widgets.php line 353

Parameters

TypeNameDescription
string$outputWidget output
bool$dailyIs this a daily widget
int$pagePage number
int$limitLimit of posts
bool$widgetIs this a widget
bool$networkIs this network-wide

Usage

add_filter( 'tptn_popular_posts_widget_output', function($output, $daily, $page, $limit, $widget, $network) {
    // ...
    return $output;
} );