WordPress OSINT, maintenance or security needs? Reach out!
TLDWP

Plugin: blog-time (Used by 19 domains)

Blog Time

πŸ‘€ Scott Reilly πŸ“¦ v4.0.1 πŸ”— Plugin Homepage

This plugin adds a dynamic, functional clock to the admin bar (at top of all admin pages) to show the server time for the blog. The clock automatically updates as time passes, as you would expect of a digital clock.

This plugin also supports a static mode which puts a timestamp string at the top of all admin pages instead of the dynamic clock. This static admin time widget can be clicked to update the time in-place (without a page reload) to show the new current server time.

Also provided is a β€œBlog Time” widget providing the same functionality as the admin widget, but for your sidebars. You may also utilize the plugin’s functionality directly within a theme template via use of the template tag c2c_blog_time().

NOTE: For the front-end widget, if the β€œUse dynamic clock?” configuration option is unchecked, this plugin generates a timestamp and NOT a clock. The time being displayed is the time of the page load, or if clicked, the time when the widget last retrieved the time. It won’t actively increment time on the display. By default the widget displays a dynamic clock that does increment time.

This is most useful to see the server/blog time to judge when a time sensitive post, comment, or action would be dated by the blog (i.e. such as monitoring for when to close comments on a contest post, or just accounting for the server being hosted in a different timezone). Or, when used statically as a timestamp and not a clock, it can indicate/preserve when the page was loaded.

Thanks to Moment.js for the JavaScript date handling library.

Links: Plugin Homepage | Plugin Directory Page | GitHub | Author Homepage

Template Tags

The plugin provides one template tag for use in your theme templates, functions.php, or plugins.

Functions


  • Returns and/or displays the formatted time for the site.

Arguments

  • $time_format (string)
    Optional. PHP-style time format string. See https://www.php.net/manual/en/datetime.format.php for more info. Default is ” (which, unless otherwise modified, uses the default time forat: β€˜g:i A’).

  • $echo (bool)
    Optional. Echo the template info? Default is true.

Examples

  • c2c_blog_time();
    ?>

  • $site_date = c2c_blog_time( 'M d, Y', false );
    ?>

Hooks

The plugin exposes four filters for hooking. Code using these filters should ideally be put into a mu-plugin or site-specific plugin (which is beyond the scope of this readme to explain). Less ideally, you could put them in your active theme’s functions.php file.

c2c_blog_time (filter)

The 'c2c_blog_time' hook allows you to use an alternative approach to safely invoke c2c_blog_time() in such a way that if the plugin were deactivated or deleted, then your calls to the function won’t cause errors in your site.

Arguments:

  • same as for c2c_blog_time()

Example:

Instead of:


Do:


c2c_blog_time_format (filter)

The 'c2c_blog_time_format' hook allows you to customize the default format for the blog time. By default this is β€˜g:i A’ (though this may be different if modified by localization).

Arguments:

  • $format (string): The default format for the blog time.

Example:

/**
 * Change the default blog time string
 *
 * @param string $format The default time format.
 * @return string
 */
function change_blog_time_format( $format ) {
    return 'b, g:i A';
}
add_filter( 'c2c_blog_time_format', 'change_blog_time_format' );

c2c_blog_time_toolbar_widget_for_user (filter)

The c2c_blog_time_toolbar_widget_for_user hook allows you to control if the admin toolbar clock widget should be shown, on a per-user basis. By default the admin toolbar clock is shown to everyone who can see the admin toolbar.

Arguments:

  • $shown (boolean): Whether the admin toolbar clock widget should be shown. Default of true.

Example:

/**
 * Only show the admin toolbar clock for the 'boss' user.
 *
 * @param $show bool Status of whether the admin toolbar clock should be shown.
 * @return bool
 */
function restrict_blog_time_widget_appearance( $show ) {
    return 'boss' === get_current_user()->user_login;
}
add_filter( 'c2c_blog_time_toolbar_widget_for_user', 'restrict_blog_time_widget_appearance' );

c2c_blog_time_active_clock (filter)

The 'c2c_blog_time_active_clock' hook returns the boolean value indicating if the Javascript-powered dynamic clock introduced in v2.0 should be enabled or if instead the v1.x era behavior of a static timestamp that can be clicked to update the timestamp via AJAX should be enabled. By default the dynamic clock is enabled.

Arguments:

  • $allow (boolean): Boolean indicating if the admin widget should be a dynamic clock. Default is true.

Example:

// Disable the dynamic clock and use the static timestamp (whcih can be clicked to update the time via AJAX) instead.
add_filter( 'c2c_blog_time_active_clock', '__return_false' );
DomainExposuresHeadersLast Checked
c*a*e*m*r*.com (WP 6.9.1) βœ… F 2026-04-08 20:17:45
l*d*e*l*n*s*o*f.ca βœ… β€” 2025-11-12 03:26:45
f*q*o*m*t*c.net βœ… β€” 2025-11-12 01:08:09
u*b*r*e*k.com βœ… β€” 2025-11-11 05:37:33
t*e*a*b*e*u*t*s.com βœ… β€” 2025-11-10 23:56:09
s*o*t*r*h*n*h*n*.com βœ… β€” 2025-11-10 11:53:32
p*e*s*r*r*d*o.com βœ… β€” 2025-11-09 22:11:36
n*e*e*g*n*y.com βœ… β€” 2025-11-09 13:36:47
m*d*e*b*a*l*r.com βœ… β€” 2025-11-09 04:57:04
l*w*t*y*.com βœ… β€” 2025-11-08 19:14:23
i*t*r*e*s*d*w*l*.com βœ… β€” 2025-11-08 08:53:00
f*q*o*m*t*c.com βœ… β€” 2025-11-07 14:53:09
d*a*f*c*s.com βœ… β€” 2025-11-07 08:41:49
d*3*y.com βœ… β€” 2025-11-07 06:24:20
c*l*f*r*i*t*a*e*e*p*r*.com βœ… β€” 2025-11-06 16:33:41
a*o*a*a*m*.com βœ… β€” 2025-11-06 06:16:25
a*z*c*l*i*n*e.com βœ… β€” 2025-11-06 04:16:05
a*l*n*n*b*a*i*.com βœ… β€” 2025-11-06 01:48:28
a*l*b*u*a*r*u*s.com βœ… β€” 2025-11-06 01:37:33

Top 50 Plugins

Plugin Count
elementor 3,987,002
contact-form-7 3,380,007
elementor-pro 2,188,808
woocommerce 1,902,461
revslider 1,294,555
js_composer 810,247
essential-addons-for-elementor-lite 591,253
wp-rocket 573,010
jetpack 544,319
header-footer-elementor 541,569
elementskit-lite 517,670
gutenberg-core 467,268
google-analytics-for-wordpress 433,557
instagram-feed 427,027
google-site-kit 413,098
wpforms-lite 402,174
astra-sites 399,665
cookie-law-info 388,347
complianz-gdpr 378,552
gravityforms 359,717
litespeed-cache 347,748
sitepress-multilingual-cms 319,274
bluehost-wordpress-plugin 299,132
gtranslate 257,502
coblocks 235,082
cookie-notice 227,389
premium-addons-for-elementor 197,185
mailchimp-for-wp 191,665
sg-cachepress 188,426
astra-addon 186,443
bb-plugin 185,148
the-events-calendar 185,125
pro-elements 183,570
click-to-chat-for-whatsapp 180,354
creame-whatsapp-me 178,795
LayerSlider 173,557
custom-fonts 172,085
wp-smushit 172,076
popup-maker 170,060
gutenberg 168,554
royal-elementor-addons 159,719
tablepress 155,669
ultimate-addons-for-gutenberg 154,374
woocommerce-gateway-stripe 150,229
pixelyoursite 149,027
smart-slider-3 148,304
duracelltomi-google-tag-manager 143,944
cleantalk-spam-protect 138,770
metform 135,480
fusion-builder 134,730

Top 50 Themes

Theme Count
hello-elementor 1,226,355
astra 1,113,331
Divi 982,193
pub 305,778
generatepress 231,189
flatsome 226,965
h4 213,417
Avada 195,537
oceanwp 168,910
kadence 147,007
twentytwentyfive 126,311
bb-theme 122,529
blocksy 121,497
twentytwentyfour 119,034
enfold 117,890
cocoon-master 117,522
salient 115,187
woodmart 100,351
betheme 98,814
twentyseventeen 89,093
dt-the7 78,067
neve 69,983
swell 63,243
twentytwentyone 60,201
bridge 58,735
lightning 53,644
twentytwentythree 52,862
twentytwenty 49,875
Avada-Child-Theme 44,261
gox 42,052
Impreza 40,373
bricks 39,742
Newspaper 39,031
twentytwentytwo 38,847
yith-wonder 32,697
storefront 31,533
extendable 30,980
themify-ultra 30,875
pro 30,174
twentyfifteen 29,900
uncode 29,547
epik-redesign 29,351
sydney 28,871
twentysixteen 28,652
go 25,836
porto 25,493
Total 25,492
hestia 23,155
popularfx 22,128
thrive-theme 21,738