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

Plugin: timed-content (Used by 1,912 domains)

Timed Content

πŸ‘€ Arno Welzel πŸ“¦ v2.97 πŸ”— Plugin Homepage

The Timed Content plugin allows users to specify that a portion of a Page or Post should appear/be visible or disappear/be invisible based on given time characteristics. You can also make portions of a Post or Page be visible at certain dates and times; you can even set up a schedule!

The plugin adds the following:

  • A β€œclient-side” shortcode that allows the marking of content to appear or disappear after a given time interval; a β€œfade” effect is included. This functionality is intended to be used for special effects only, as content marked in this manner is still visible in the HTML source and, therefore, not a secure method of hiding content.
  • Two β€œserver-side” shortcodes that allow the marking of content to be visible only during specified date/time intervals. This functionality can be used as a secure method of hiding content, because the marked content will be included in the Page/Post only when viewed in the specified date/time intervals.

A TinyMCE dialog is included to help users build the shortcodes. See the Screenshots tab for more info.

Examples

[timed-content-client show="1:00"]Show me after one minute.  Since we don't want a fade-in, we can leave it out of the "show" attribute completely.[/timed-content-client]

[timed-content-client show="1:00:1000"]Show me after one minute with a 1000 millisecond (1 second) fade-in.[/timed-content-client]

[timed-content-client hide="1:00:1000"]Hide me after one minute with a 1000 millisecond (1 second) fade-out.[/timed-content-client]

[timed-content-client show="1:00:500" hide="5:00:2000"]Show me after one minute with a 500 millisecond (a half-second) fade-in, then hide me after five minutes with a 2000 millisecond (2 seconds) fade-out.[/timed-content-client]

[timed-content-server show="2013-09-13 20:30:00 -0600"]Show me starting at 8:30 PM Central Standard Time on September 13th, 2013. I will not be displayed before then.[/timed-content-server]

[timed-content-server hide="2013-09-13 20:30:00 America/Chicago"]Hide me starting at 8:30 PM Central Daylight Time (i.e., the same timezone as Chicago) on September 13th, 2013.  I will not be displayed after then[/timed-content-server]

[timed-content-server show="2013-09-13 20:30:00 -0600" hide="2013-09-13 21:30:00 -0600"]Show me starting at 8:30 PM Central Standard Time on September 13th, 2013, then hide me an hour later. I will not be displayed before or after then.[/timed-content-server]

[timed-content-rule id="164"]Display me based on the settings for the Timed Content Rule whoseID is 164.[/timed-content-rule]

Usage

NOTE: All shortcodes can be built using the TinyMCE dialog. When in doubt, use the dialog to create correctly formed shortcodes.

The timed-content-client shortcode

[timed-content-client show="mm:ss:fff" hide="mm:ss:fff"]Example Text[/timed-content-client]
  • show – Specifies the time interval after loading the web page when the marked content should be displayed. The attribute consists of three parts,
    separated by colons: mm – minutes, ss – seconds, and fff – if greater than 0, a fade-in effect lasting fff milliseconds is applied.
  • hide – Specifies the time interval after loading the web page when the marked content should be hidden. The attribute consists of three parts,
    separated by colons: mm – minutes, ss – seconds, and fff – if greater than 0, a fade-out effect lasting fff milliseconds is applied.

Both attributes are optional, but at least one attribute must be included. Leading zeros (0) are optional. The shortcode’s behaviour depends on which attributes are used:

  • show only – Marked content is initially not visible, then appears mm minutes and ss seconds after loading with a fff millisecond fade-in.
  • hide only – Marked content is initially visible, then disappears mm minutes and ss seconds after loading with a fff millisecond fade-out.
  • show and hide – Marked content is initially not visible, then appears according to the values set in show, then disappears according to the values set in hide.

Your users must have JavaScript enabled for this shortcode to work.

The timed-content-server shortcode

[timed-content-server show="datetime" hide="datetime" debug="true|false|when_hidden"]Example Text[/timed-content-server]
  • show – Specifies the date/time when the marked content should start being included on the web page.
  • hide – Specifies the date/time after which the marked content should stop being included on the web page.
  • debug – If true, adds some debugging statements to the web page as HTML comments. If when_hidden, the debugging statements are added only when the content is hidden. Defaults to false.

The date and time are expected to be yyyy-mm-dd HH:MM (similar to ISO 8601), for example 2019-04-07 15:30 for April 7, 2019, 15:30. For backward compatiblity old β€œhuman readable” date formats should also work, but these should not be used any longer!

In addition you can provide a timezone in the date/time parameter either as name or as offset like 2019-04-07 15:30 America/Chicago or 2019-04-07 15:30 +0200. If you do not provide a timezone, the WordPress timezone setting will be used as default.

Both show and hide attributes are optional, but at least one attribute must be included. The shortcode’s behaviour depends on which attributes are used:

  • show only – Marked content is outputted only after the date/time set here.
  • hide only – Marked content is outputted only before the date/time set here.
  • show and hide – Marked content is outputted only during the time period defined by the show and hide attributes.

The timed-content-rule shortcode

[timed-content-rule id="{rule_id}|{rule_name}"]Example Text[/timed-content-rule]

You can find the correct shortcode from the Timed Content Rules overview page, or use the TinyMCE dialog.

Testing server side rules

For testing the behaviour of server side rules at specific times, you may use the GET parameter tctest in an URL, followed by date and time in the format YYYY-MM-DD+hh:mm:ss. This works only you are logged in with a user which has the right to edit the displayed page or post. For example: http://mysite.example?tctest=2018-02-10+19:16:00 will show the content as if it was February 10, 2018 at 19:16.

Developer Documentation

Action hooks

add_action( "timed_content_server_show", "{function_name}", {priority_level}, 4 );

Fired when the [timed-content-server] shortcode is encountered AND the content is to be displayed based on the shortcode’s show/hide attributes. Functions using this hook should accept the following arguments in order:

  • $post_id – the ID of the currently displayed Post/Page
  • $show – the value of the show attribute. If not set, defaults to β€œ1970-Jan-01 00:00:00 +000”
  • $hide – the value of the hide attribute. If not set, defaults to β€œ2038-Jan-19 03:14:07 +000”
  • $content – The content enclosed by the shortcode

    add_action( β€œtimed_content_server_hide”, β€œ{function_name}”, {priority_level}, 4 );

Fired when the [timed-content-server] shortcode is encountered AND the content is to be hidden based on the shortcode’s show/hide attributes. Functions using this hook should accept the following arguments in order:

  • $post_id – the ID of the currently displayed Post/Page
  • $show – the value of the show attribute. If not set, defaults to β€œ1970-Jan-01 00:00:00 +000”
  • $hide – the value of the hide attribute. If not set, defaults to β€œ2038-Jan-19 03:14:07 +000”
  • $content – The content enclosed by the shortcode

    add_action( β€œtimed_content_rule_show”, β€œ{function_name}”, {priority_level}, 3 );

Fired when the [timed-content-rule] shortcode is encountered AND the content is to be displayed based on the Timed Content Rule’s properties. Functions using this hook should accept the following arguments in order:

  • $post_id – the ID of the currently displayed Post/Page
  • $rule_id – the ID of the Timed Content Rule being called. Use get_post_meta( $rule_id ) to get the Rule’s properties.
  • $content – The content enclosed by the shortcode

    add_action( β€œtimed_content_rule_hide”, β€œ{function_name}”, {priority_level}, 3 );

Fired when the [timed-content-rule] shortcode is encountered AND the content is to be hidden based on the Timed Content Rule’s properties. Functions using this hook should accept the following arguments in order:

  • $post_id – the ID of the currently displayed Post/Page
  • $rule_id – the ID of the Timed Content Rule being called. Use get_post_meta( $rule_id ) to get the Rule’s properties.
  • $content – The content enclosed by the shortcode

Filter hooks

timed_content_filter

Filter for any content enclosed by a Timed Content shortcode. Implements the same filters as the_content:

  • wptexturize
  • convert_smilies
  • convert_chars
  • wpautop
  • prepend_attachment
  • do_shortcode

    timed_content_filter_override

Replaces the timed_content_filter with another pre-existing filter to use for any content enclosed by a Timed Content shortcode. Any function hooked into this filter must return the name of a filter (as a string).

DomainExposuresHeadersLast Checked
m*n*c*e*r*c*t*.online (WP 7.0) βœ… A 2026-06-14 14:39:32
g*n*e*a*-*e*.nl (WP 7.0) βœ… F 2026-06-14 14:33:26
a*-*o*d.de βœ… B 2026-06-14 11:37:22
b*a*c*e*a*t*p*o*u*t*o*s.nl (WP 7.0) βœ… F 2026-06-14 10:33:50
h*t*l*l*u*h*f*u*r.de (WP 6.1.10) ⚠️ F 2026-06-14 09:15:16
s*n*y*a*t*a*e*.w*e*g*n*p*w*r*d.com βœ… F 2026-06-14 06:50:45
t*e*e*l*t*e*e*l*f*.com βœ… F 2026-06-14 06:50:45
p*e*a*e*d*n*.t*h*s*a*a.bg (WP 5.5.3) ⚠️ F 2026-06-14 05:22:07
c*a*r*.o*g.br βœ… A 2026-06-14 01:04:56
c*s*d*p*c*n*.s*a*i*g.t*m*u*l.host (WP 7.0) βœ… F 2026-06-13 21:14:55
b*r*b*u*-*p*t*e*e*p*t*d*m.de (WP 7.0) βœ… F 2026-06-13 17:12:21
e*a*m*s.c*m*u*i*e*.e*u.tr βœ… C 2026-06-13 14:30:13
w*s*c*.l*b.u*.us (WP 6.2.7) ⚠️ F 2026-06-13 11:52:57
k*n*e*w*n*c*z*n*r*m*m*g*e*u*g.de (WP 7.0) βœ… F 2026-06-13 11:42:27
b*f*n.ch (WP 6.8.5) βœ… F 2026-06-13 10:52:20
d*-*n*-*e*n*t*e*.de (WP 6.3.8) ⚠️ F 2026-06-13 07:12:16
t*e*v*r*i*h*r*n*-*c*e*e.de (WP 6.3.8) ⚠️ F 2026-06-13 07:12:16
u*l*e*e*.online (WP 6.3.8) ⚠️ F 2026-06-13 07:12:16
o*h*i*z*w.pl (WP 7.0) βœ… F 2026-06-13 04:02:37
g*s*h*n*t*p*s.w*i*n*c*t*n*l*z*r*.ch (WP 5.1.19) ⚠️ F 2026-06-13 02:39:05
o*t*m*m*r*p*r*y.pl (WP 7.0) βœ… F 2026-06-13 01:57:12
f*m*a*h.e*s*.de (WP 7.0) βœ… F 2026-06-12 23:46:55
c*a*s*f*e*s.b*o*g*m*.com (WP 6.8.5) βœ… C 2026-06-12 23:29:38
b*u*k*.n*w.g*v.au βœ… F 2026-06-12 21:14:10
h*b*y*r*c*o*.nl (WP 7.0) βœ… F 2026-06-12 18:38:03
t*a*h*r.c*m*u*e*s*i*n*e*k.com (WP 6.3.8) ⚠️ D 2026-06-12 16:17:11
k*l*a*l*h.h*b*e*p*o*l*.com βœ… F 2026-06-12 16:06:40
p*l*e*e*.z*m*d*c*.com βœ… D 2026-06-12 16:05:20
a*s*s*.z*m*d*c*.com βœ… D 2026-06-12 16:05:20
b*n*s.biz (WP 6.4.3) ⚠️ F 2026-06-12 14:23:06
r*c*t*a*a*k*.com βœ… F 2026-06-12 13:56:46
c*n*r*-*s*c*o*o*i*u*-*r*a*n*m.be (WP 7.0) βœ… F 2026-06-12 02:11:54
c*m*u*e*s*m*l*r.de (WP 7.0) βœ… F 2026-06-12 02:01:28
o*d*r*r*m*n*g*e*.dk (WP 7.0) βœ… D 2026-06-12 00:03:05
s*h*a*e*b*r*.events βœ… F 2026-06-11 13:38:02
o*f*r*.n*g*t*i*e.a*.uk (WP 7.0) βœ… F 2026-06-11 05:45:39
p*y*h*l*g*e*r*m*o*r*e*e*t.be (WP 7.0) βœ… F 2026-06-11 05:44:12
e*a*a*e*r*i*i*g.ca (WP 7.0) βœ… F 2026-06-11 02:53:31
c*n*r*-*h*r*p*u*i*u*-*h*d*-*a*n*-*e*e*e.be (WP 7.0) βœ… F 2026-06-10 21:03:44
c*n*r*-*h*r*p*u*i*u*-*n*e*l*c*t.be (WP 7.0) βœ… F 2026-06-10 21:03:44
c*n*r*-*h*r*p*u*i*u*-*a*n*-*o*s*-*e*-*o*d*.be (WP 7.0) βœ… F 2026-06-10 21:03:44
c*n*r*-*h*r*p*u*i*u*-*o*k*l*e*g.be (WP 7.0) βœ… F 2026-06-10 21:03:44
c*n*r*-*h*r*p*u*i*u*-*e*t*.be (WP 7.0) βœ… F 2026-06-10 21:03:44
c*n*r*-*h*r*p*u*i*u*-*o*u*e*a*n*p*e*r*.be (WP 7.0) βœ… F 2026-06-10 21:03:44
c*n*r*-*h*r*p*u*i*u*-*o*u*e*a*n*l*m*e*t.be (WP 7.0) βœ… F 2026-06-10 21:03:44
c*n*r*-*h*r*p*u*i*u*-*c*a*r*e*k.be (WP 7.0) βœ… F 2026-06-10 21:03:44
c*n*r*-*h*r*p*u*i*u*-*o*e*t.be (WP 7.0) βœ… F 2026-06-10 21:03:44
c*n*r*-*h*r*p*u*i*u*-*u*e*g*e*.be (WP 7.0) βœ… F 2026-06-10 21:03:44
c*n*r*-*h*r*p*u*i*u*-*a*n*-*i*l*s.be (WP 7.0) βœ… F 2026-06-10 21:03:44
c*n*r*-*h*r*p*u*i*u*-*v*r*.be (WP 7.0) πŸ”“ F 2026-06-10 21:03:44
c*n*r*-*h*r*p*u*i*u*-*i*e*l*s.be (WP 7.0) βœ… F 2026-06-10 21:03:44
c*n*r*-*h*r*p*u*i*u*-*a*n*u*.be (WP 7.0) βœ… F 2026-06-10 21:03:43
m*r*l*m*e*t.de βœ… F 2026-06-10 19:35:56
j*z*-*e*d*n*e*m.de (WP 7.0) βœ… F 2026-06-10 10:21:58
f*r*s.l*j*a.de (WP 7.0) βœ… F 2026-06-10 09:41:33
g*u*n*-*e*l.de βœ… F 2026-06-10 08:11:47
d*b*.ru βœ… F 2026-06-10 05:01:59
s*u*a*a*-*r*s*e*t*i*h.de (WP 7.0) βœ… F 2026-06-10 03:26:43
k*r*t*-*i*g*n.de πŸ”“ F 2026-06-09 23:58:21
m*e*n*r*e*e*s*u*d.de (WP 7.0) βœ… F 2026-06-09 22:56:12
v*r*e*d*n*p*n*e*n*t.nl (WP 6.9.4) βœ… F 2026-06-09 15:15:04
l*m*n*n*3.w*e*g*n*.com βœ… D 2026-06-09 15:00:46
p*y*i*i*n*.com (WP 6.2.2) ⚠️ πŸ”“ F 2026-06-09 10:42:10
z*t*m*d*a.net (WP 6.4.8) ⚠️ D 2026-06-09 08:12:03
e*t*f*e*n.de (WP 7.0) βœ… F 2026-06-09 05:25:01
o*a*i*j*s*o.fi βœ… D 2026-06-09 03:50:10
k*e*z*e*g*e*t*v*l.de βœ… F 2026-06-08 12:25:17
k*e*h*n*s*e*e*e*.d*.d*m*i*p*e*i*w.eu βœ… F 2026-06-08 07:03:08
g*a*e*-*t*r*o*e*a*i*n.de (WP 6.8.5) βœ… D 2026-06-08 01:16:23
c*r*s*i*.de βœ… C 2026-06-07 21:30:38
r*t*a*s*a*o*h*k*.at (WP 6.8.3) βœ… F 2026-06-07 21:21:01
l*u*k*r*o*n.nl βœ… F 2026-06-07 20:48:44
b*g*m*r*.c*.il (WP 7.0) βœ… F 2026-06-07 19:50:18
d*y*o*a*.ua βœ… C 2026-06-07 18:48:45
t*s*v*h*e*w*l*.de βœ… F 2026-06-07 14:57:00
h*l*e.b*u*i*n*t.com (WP 7.0) βœ… F 2026-06-07 14:17:20
m*l*i*e*i*u*l*r.ar (WP 7.0) βœ… F 2026-06-07 09:48:05
b*g*e*r*o*l*c*i*n.com βœ… F 2026-06-07 09:10:28
z*r*u*.k*j*-*s*f*l*e*n.de (WP 7.0) βœ… F 2026-06-07 09:06:46
s*m*e*l*g*r.k*j*-*s*f*l*e*n.de (WP 7.0) βœ… F 2026-06-07 09:06:46
k*n*e*a*t*v*e*k*t*t*.k*j*-*s*f*l*e*n.de (WP 7.0) βœ… F 2026-06-07 09:06:45
o*6*l.be (WP 7.0) βœ… F 2026-06-07 08:48:05
c*a*h*l*e*e.be (WP 7.0) βœ… F 2026-06-07 07:49:03
h*m*d*l*v*r*.s*a*t*m*r*.coop (WP 7.0) βœ… D 2026-06-07 05:53:06
d*k*s*-*g*.de (WP 7.0) βœ… F 2026-06-07 05:25:56
d*k*g*9*3.de (WP 7.0) βœ… F 2026-06-07 05:25:56
m*r*v*l*e*q.m*.s*t*.com (WP 6.9.1) βœ… F 2026-06-07 04:41:56
e*c*n*s.cat (WP 6.9.4) βœ… F 2026-06-07 04:26:16
p*y*h*l*g*e*c*i*i*i*n*b*l*i*u*.be (WP 7.0) βœ… F 2026-06-07 03:32:02
h*p*o*h*r*p*e*b*l*i*u*.be (WP 7.0) βœ… F 2026-06-07 03:32:02
h*p*o*e*t*u*n*i.be (WP 7.0) βœ… F 2026-06-07 03:32:02
c*a*h*n*-*c*l*i*e*m*n*.be (WP 7.0) βœ… F 2026-06-07 03:32:02
c*a*h*n*-*c*l*i*e*t*u*n*i.be (WP 7.0) βœ… F 2026-06-07 03:32:01
c*a*h*n*-*c*l*i*e*l*e*e.be (WP 7.0) βœ… F 2026-06-07 03:32:01
i*e*l*s*s*x*l*g*e.be (WP 7.0) βœ… F 2026-06-07 03:32:01
t*e*a*i*-*o*p*e*l*x*m*o*r*.be (WP 7.0) βœ… F 2026-06-07 03:32:01
a*n*a*r*-*y*n*t*e*a*e*t*s.be (WP 7.0) πŸ”“ F 2026-06-07 03:32:01
p*o*u*e*1*.be (WP 7.0) βœ… F 2026-06-07 03:32:01
t*e*a*i*-*r*b*n*-*a*l*n.be βœ… F 2026-06-07 03:32:01
p*y*h*l*g*e*n*m*r.be (WP 7.0) βœ… F 2026-06-07 03:32:01

Top 50 Plugins

Plugin Count
elementor 1,834,974
contact-form-7 1,805,395
elementor-pro 1,069,674
woocommerce 831,175
revslider 628,526
jetpack 473,249
js_composer 440,228
wp-rocket 341,005
essential-addons-for-elementor-lite 300,145
gravityforms 270,579
complianz-gdpr 262,997
cookie-law-info 236,572
instagram-feed 232,313
google-site-kit 226,154
sitepress-multilingual-cms 225,560
google-analytics-for-wordpress 217,459
header-footer-elementor 213,861
elementskit-lite 211,389
bluehost-wordpress-plugin 191,844
gutenberg 164,589
gutenberg-core 162,474
cookie-notice 155,603
litespeed-cache 135,239
the-events-calendar 134,880
wpforms-lite 131,470
gtranslate 130,461
astra-sites 121,039
popup-maker 118,166
woocommerce-payments 114,462
tablepress 112,366
coblocks 101,429
honeypot 99,514
astra-addon 96,982
duracelltomi-google-tag-manager 95,600
wp-smushit 95,268
all-in-one-seo-pack 94,836
LayerSlider 93,178
bb-plugin 91,997
megamenu 88,536
premium-addons-for-elementor 88,535
akismet 87,226
mailchimp-for-wp 85,188
cleantalk-spam-protect 85,035
woocommerce-gateway-stripe 84,457
ml-slider 82,764
borlabs-cookie 81,569
fusion-builder 81,119
wp-pagenavi 80,609
ewww-image-optimizer 80,505
formidable 79,254

Top 50 Themes

Theme Count
hello-elementor 627,686
Divi 519,455
astra 431,031
flatsome 140,279
Avada 126,551
generatepress 124,831
pub 111,883
oceanwp 85,062
kadence 80,297
enfold 73,148
salient 67,774
twentytwentyfour 59,833
h4 57,433
twentyseventeen 57,275
bb-theme 55,987
betheme 52,878
cocoon-master 52,403
blocksy 51,939
dt-the7 47,031
twentytwentyfive 44,923
neve 40,199
Avada-Child-Theme 38,272
sydney 37,893
woodmart 33,918
gox 33,881
bridge 33,424
twentytwentyone 32,668
lightning 31,833
twentytwenty 30,617
swell 28,847
Impreza 27,049
bricks 26,563
twentytwentythree 24,358
Newspaper 24,061
voxel 23,714
kubio 20,713
sinatra 20,411
twentytwentytwo 20,219
uncode 19,485
epik-redesign 19,279
twentysixteen 18,605
storefront 18,237
pro 18,053
Total 14,987
extendable 14,808
yith-wonder 14,114
hello-theme-child-master 13,652
themify-ultra 13,248
yootheme 13,220
hestia 13,119