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

Plugin: timed-content (Used by 1,818 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
h*l*i*i*a*i*n.com βœ… F 2026-04-17 10:56:47
d*f*n*e*a*e.com βœ… F 2026-04-17 10:46:17
f*m*l*a*e*o*m*.com (WP 6.0.11) ⚠️ F 2026-04-17 10:36:12
k*f*l*s*i*g*o*l*n*.com (WP 6.7.1) πŸ”“ F 2026-04-17 10:28:48
k*f*l*s*i*d*u*f*n*.com (WP 6.7.1) πŸ”“ F 2026-04-17 10:28:48
u*t*g*.fr (WP 6.8.2) βœ… F 2026-04-17 09:42:29
m*r*o*r*a*.com βœ… D 2026-04-17 09:23:37
h*l*e*i*a.com (WP 6.9.4) βœ… F 2026-04-17 09:07:24
o*d*k*o*1*1.com (WP 6.9.4) βœ… F 2026-04-17 05:23:35
m*z*m*n*e*i*l*.com βœ… F 2026-04-17 05:21:04
s*o*e.schedulinginstitute.com πŸ”“ F 2026-04-17 05:06:24
b*i*g*r*l*m*i*g.com βœ… F 2026-04-17 04:59:02
z*i*t*n*i*e*.com (WP 6.9.4) βœ… F 2026-04-17 04:51:32
o*d*e*d*i*l.com βœ… F 2026-04-17 03:59:02
o*d*a*r*v*t*.com βœ… F 2026-04-17 03:29:27
h*l*e*a*p.com (WP 6.7.1) βœ… D 2026-04-17 02:34:19
h*l*e*d*h*l*e*.com (WP 6.9.4) βœ… F 2026-04-17 02:34:19
h*l*n*h*m*e*.com βœ… C 2026-04-17 01:35:52
z*e*t*b*.com (WP 6.9.4) βœ… F 2026-04-17 01:17:54
z*c*a*a*i*.com (WP 6.9.4) βœ… F 2026-04-17 01:01:36
m*y*u*c*.com βœ… F 2026-04-16 22:59:49
o*o*o*i*i*e.com (WP 6.9.4) βœ… D 2026-04-16 22:39:49
s*o*t*e*a*s*m*i*.com (WP 6.9.4) βœ… F 2026-04-16 20:34:44
s*o*t*e*a*a*a*e*i*.com (WP 6.9.4) βœ… F 2026-04-16 20:34:44
a*k*-*r*n*t.com βœ… F 2026-04-16 20:12:30
b*e*e*f*r*e*l*u*.com (WP 6.9.4) βœ… F 2026-04-16 18:27:11
b*e*e*-*i*t*r*a*f*e*i*.com (WP 6.9.4) βœ… F 2026-04-16 18:27:11
d*b*m*v*n*.com βœ… F 2026-04-16 18:15:45
t*a*h*r.csuk.io (WP 6.3.8) ⚠️ D 2026-04-16 18:10:45
h*b*e*p*o*l*.com βœ… F 2026-04-16 17:40:45
z*m*d*c*.com βœ… D 2026-04-16 17:31:14
s*n*e*t*e*s*.net (WP 6.9.4) βœ… F 2026-04-16 17:08:57
f*c*b*a*t*s*i*n*e.com βœ… C 2026-04-16 16:58:25
m*x*m*-*i*.com (WP 6.6.5) βœ… F 2026-04-16 15:25:59
b*e*k*o*m*u*d*a.com (WP 6.9.4) βœ… F 2026-04-16 15:08:58
r*j*i*e.com βœ… F 2026-04-16 13:31:11
d*a*s*h*s*n*y*u.com βœ… F 2026-04-16 13:14:25
d*n*.pr.gov βœ… F 2026-04-16 12:16:53
f*b*r*i*g*a*.com (WP 6.8.5) βœ… F 2026-04-16 10:48:36
t*a*e*a*d*e*c*.com βœ… F 2026-04-16 10:31:44
h*a*t*y*o*2*.com (WP 6.4.8) ⚠️ F 2026-04-16 08:05:42
d*i*l.com βœ… F 2026-04-16 07:44:30
z*k*d*o*d.com βœ… D 2026-04-16 06:55:01
l*g*n*s*a*i*.com (WP 6.9.4) βœ… F 2026-04-16 04:27:28
c*m*u*e*s*r*i*e.arminfischer.com (WP 6.9.4) βœ… F 2026-04-16 02:34:31
g*i*t*e*s*r*c*r*e*.com βœ… F 2026-04-16 01:54:33
g*i*t*e*s*r*c*r.com βœ… F 2026-04-16 01:54:33
g*i*t*e*s*i.com βœ… F 2026-04-16 01:54:33
g*i*t*e*s*g*.com βœ… F 2026-04-16 01:54:33
h*a*t*n*w*g*r*a*y.com βœ… F 2026-04-16 01:30:20
d*z*o*d*c*p*i*n*o*k.com βœ… F 2026-04-15 23:47:15
m*t*i*d*g.com (WP 6.9.4) βœ… F 2026-04-15 22:41:16
d*y*e*h*r*f*s.com (WP 6.9.4) βœ… F 2026-04-15 21:38:25
a*d*-*e*n.com (WP 6.4.8) ⚠️ F 2026-04-15 20:53:29
h*a*t*-*o*e*h*n*s*i*e.com (WP 6.9.4) βœ… F 2026-04-15 20:37:46
t*a*t*m*n*-*u*n*u*.com (WP 6.9.4) βœ… F 2026-04-15 19:28:33
t*a*n*a*e*n*p*r*.com (WP 6.9.4) βœ… D 2026-04-15 19:08:29
a*d*e*g*e*n*e*.com βœ… F 2026-04-15 18:18:18
o*f*r*a*i*r*.com βœ… F 2026-04-15 17:53:57
s*a*k*s*e*k*o*s*.com βœ… D 2026-04-15 17:41:43
d*v*n*h*w*i*.com βœ… F 2026-04-15 17:34:29
s*n*y*a*t*a*e*.com βœ… F 2026-04-15 17:02:29
h*p*r*s*h*c*g*.com βœ… F 2026-04-15 16:12:29
h*g*a*r*o*s.com (WP 6.9.4) βœ… F 2026-04-15 15:45:39
k*r*n*a*a*i*e.com βœ… F 2026-04-15 12:42:25
k*r*i*-*m*.com (WP 6.9.4) βœ… F 2026-04-15 11:31:38
t*a*t*o*t*u*k*a*t*.com βœ… F 2026-04-15 10:12:09
d*u*e*-*a*u*a*t*r.com (WP 6.9.4) βœ… F 2026-04-15 08:58:55
m*s*a*e*t*d*o*s*u*t*a*t.com (WP 6.9.4) βœ… F 2026-04-15 08:05:40
s*v*y*.com (WP 6.9.4) πŸ”“ F 2026-04-15 07:31:05
g*o*e*r*n*h.com (WP 6.7.5) βœ… D 2026-04-15 07:30:54
b*u*l*-*n*c*r*.com (WP 6.9.4) βœ… B 2026-04-15 06:13:13
s*u*h*e*l*i*y.com βœ… F 2026-04-15 05:47:26
y*g*-*i*e*s*u*i*.de (WP 6.9.4) βœ… F 2026-04-15 04:54:54
b*t*l*h*r*o.com (WP 5.5.18) ⚠️ F 2026-04-15 04:45:03
x*r*-*e*i*.net βœ… F 2026-04-15 03:16:47
e*e*-*l*.de βœ… F 2026-04-15 01:42:13
d*s*i*c*n*r.com (WP 6.9.4) βœ… F 2026-04-15 01:09:58
s*u*h*a*t*r*p*s*e*.com βœ… F 2026-04-15 01:00:11
h*u*-*m*h.com (WP 6.8.5) βœ… B 2026-04-15 00:52:49
c*s*n*s*j*c*p*t.net (WP 6.9.4) βœ… F 2026-04-14 23:22:38
g*t*u*l*t*l*f*.com (WP 6.9) βœ… F 2026-04-14 23:22:34
b*r*u*h*r*e*v*t*.com βœ… F 2026-04-14 22:25:29
d*r*y*d*p*e.com βœ… F 2026-04-14 21:43:12
o*e*p*u*.com (WP 6.9.4) βœ… F 2026-04-14 21:31:03
m*r*h*l*.com βœ… F 2026-04-14 21:11:04
s*u*m*t*s*o*t*u*s.com βœ… F 2026-04-14 18:00:10
s*u*m*t*s*o*t*u*.com βœ… F 2026-04-14 18:00:10
k*m*o*p*b*i*d*r*.com βœ… D 2026-04-14 17:45:20
o*e*f*a*y.co.uk βœ… B 2026-04-14 17:31:43
o*k*a*d*r*v*h*a*t*c*r*.com βœ… C 2026-04-14 17:01:51
e*e*a*w*r*o*p*r*.de (WP 6.9.4) βœ… F 2026-04-14 15:43:18
w*l*b*x*t*t*o*.de (WP 6.9.4) βœ… F 2026-04-14 15:22:21
w*.wellpursan.com (WP 6.9.4) βœ… D 2026-04-14 14:08:03
x*r*c*c*e*d*u*s*h*a*d.de (WP 6.8.5) βœ… F 2026-04-14 13:57:36
t*o*s*n*-*e*m*.de (WP 6.9.4) βœ… F 2026-04-14 13:57:36
m*n*a*u*-*i*e*.de βœ… F 2026-04-14 13:57:36
h*r*i*b*r*h*a*.com βœ… F 2026-04-14 12:37:31
k*f*e*a*t.at βœ… F 2026-04-14 10:10:13
t*r*e*w*o*s*s*a*e*.com (WP 6.1.1) ⚠️ F 2026-04-14 09:32:56

Top 50 Plugins

Plugin Count
elementor 2,368,660
contact-form-7 2,165,742
elementor-pro 1,339,282
woocommerce 1,106,703
revslider 804,310
js_composer 530,877
jetpack 484,639
wp-rocket 389,835
essential-addons-for-elementor-lite 359,758
header-footer-elementor 302,272
gravityforms 287,280
gutenberg-core 285,037
elementskit-lite 282,099
instagram-feed 275,782
google-analytics-for-wordpress 272,178
complianz-gdpr 270,429
google-site-kit 265,816
cookie-law-info 263,112
sitepress-multilingual-cms 237,355
bluehost-wordpress-plugin 222,062
wpforms-lite 208,504
astra-sites 200,980
litespeed-cache 184,041
gutenberg 161,055
gtranslate 160,356
cookie-notice 154,723
coblocks 151,046
the-events-calendar 138,588
popup-maker 130,621
astra-addon 117,526
bb-plugin 116,893
premium-addons-for-elementor 115,563
LayerSlider 114,529
wp-smushit 112,870
mailchimp-for-wp 112,465
tablepress 112,043
duracelltomi-google-tag-manager 102,991
creame-whatsapp-me 101,138
woocommerce-gateway-stripe 99,458
cleantalk-spam-protect 99,356
akismet 98,244
honeypot 97,491
pro-elements 96,302
custom-fonts 95,998
megamenu 95,219
click-to-chat-for-whatsapp 94,671
smart-slider-3 94,485
fusion-builder 93,566
woocommerce-payments 93,551
pixelyoursite 91,524

Top 50 Themes

Theme Count
hello-elementor 769,644
Divi 635,348
astra 614,047
pub 191,746
generatepress 144,742
flatsome 144,379
Avada 142,802
h4 112,219
oceanwp 105,657
kadence 94,582
enfold 82,321
salient 79,395
bb-theme 73,914
twentytwentyfour 71,880
blocksy 68,513
cocoon-master 66,956
twentytwentyfive 66,128
betheme 64,393
twentyseventeen 64,315
dt-the7 53,473
woodmart 50,720
neve 46,795
twentytwentyone 40,531
bridge 39,831
Avada-Child-Theme 38,321
gox 35,982
swell 35,730
twentytwenty 35,365
lightning 35,050
twentytwentythree 32,983
bricks 28,895
Impreza 28,845
Newspaper 26,260
twentytwentytwo 25,826
epik-redesign 22,776
pro 21,533
storefront 21,429
extendable 21,361
uncode 21,205
twentysixteen 20,923
yith-wonder 19,625
sydney 19,495
themify-ultra 18,258
Total 17,405
twentyfifteen 16,409
porto 15,712
hestia 15,361
yootheme 14,498
thrive-theme 14,418
twentynineteen 14,414