/var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/plugins/give/includes/admin
Edit: /var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/plugins/give/includes/admin/dashboard-widgets.php (1271B)
publish ) {
$text = sprintf(
/* translators: %s: number of posts published */
_n( '%s GiveWP Form', '%s GiveWP Forms', $num_posts->publish, 'give' ),
$num_posts->publish
);
$text = sprintf( $text, number_format_i18n( $num_posts->publish ) );
if ( current_user_can( 'edit_give_forms', get_current_user_id() ) ) {
$text = sprintf(
'
%2$s',
admin_url( 'edit.php?post_type=give_forms' ),
$text
);
} else {
$text = sprintf(
'
%1$s',
$text
);
}
$items[] = $text;
}
return $items;
}
add_filter( 'dashboard_glance_items', 'give_dashboard_at_a_glance_widget', 1, 1 );