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

Plugin: timed-content (Used by 1,848 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
v*n*e*t*o*n*y*o*n*a*i*n.org (WP 6.9.4) βœ… F 2026-04-29 08:12:27
c*v*c*e*t*r*v.com βœ… F 2026-04-29 07:02:19
p*n*u*-*a*i*o*p*r*-*h*l*.com βœ… F 2026-04-29 06:54:12
p*n*u*-*a*i*o*i*d*a.com βœ… F 2026-04-29 06:54:12
c*t*z*r*.com βœ… F 2026-04-29 06:01:49
m*r*a*s*h*l*z.com (WP 6.7.2) βœ… F 2026-04-29 05:56:38
r*d*o*r*t*n.at (WP 6.9.4) βœ… F 2026-04-29 05:44:52
p*o*h*p.co.jp (WP 6.9.4) βœ… D 2026-04-29 05:04:59
r*c*n*s*u*i*.com βœ… F 2026-04-29 04:45:53
t*e*a*k*t*u*k*n*h*m*p*s.com (WP 6.9.4) βœ… F 2026-04-29 04:10:56
l*k*a*e.com βœ… D 2026-04-29 03:38:36
r*.mdz-moskau.eu (WP 5.6.17) ⚠️ F 2026-04-29 02:37:46
s*a*a*i*s.com βœ… F 2026-04-29 02:01:51
c*j*.com (WP 6.9.4) βœ… F 2026-04-29 01:49:00
n*w*e*g*t*a*.com (WP 5.5.18) ⚠️ F 2026-04-29 01:05:12
h*l*a*f*l*e.hu (WP 6.9.4) βœ… F 2026-04-29 00:48:17
h*m*n*e*i*n*w.com βœ… F 2026-04-29 00:21:16
l*k*g*b*o*u*c.com (WP 6.9.4) βœ… B 2026-04-28 23:54:59
g*s*n*h*i*s*e*e*t*v*n.de (WP 6.9.4) βœ… F 2026-04-28 23:46:01
r*e*e*c*r*.de (WP 6.8.5) βœ… F 2026-04-28 23:40:41
t*n*s.de (WP 6.9.4) βœ… F 2026-04-28 23:18:22
t*e*m*h*r*v*r*r*n*.com (WP 6.9.4) βœ… F 2026-04-28 23:17:54
m*s*k*u*d*r*u*g.de (WP 6.9.4) βœ… F 2026-04-28 23:07:47
h*p*a*d*i*e.church (WP 6.9.4) βœ… F 2026-04-28 22:58:22
t*e*l*f*e*m*l*.com βœ… F 2026-04-28 22:45:52
s*n*y*a*t*a*e*.wpengine.com βœ… F 2026-04-28 22:41:13
v*t*o*.de (WP 6.9.4) βœ… F 2026-04-28 22:18:14
s*l*e*m*t*i*s.app (WP 6.4.8) ⚠️ F 2026-04-28 21:43:43
c*n*i*e*e*-*a*o*y.com (WP 6.6.5) βœ… F 2026-04-28 20:43:46
v*l*a*e*d*t*i*.eu βœ… B 2026-04-28 19:56:54
m*n*f*l*e*s*e*i*a*i*n*e*t*r*.com (WP 6.3.1) ⚠️ πŸ”“ F 2026-04-28 19:31:13
a*t*r*t*p*r*e*d*r*.com βœ… F 2026-04-28 19:19:26
l*g*e*r*d*l*e*e*d*t*.com βœ… F 2026-04-28 19:16:02
i*t*c*-*e*t*o*e.com βœ… D 2026-04-28 18:38:58
i*t*c*-*e*t*o.com βœ… D 2026-04-28 18:38:58
i*t*c*p*t*l*w*s*.com (WP 6.6.5) βœ… F 2026-04-28 18:38:58
m*n*f*l*n*w.com βœ… F 2026-04-28 18:32:58
j*b*.goodwillaz.org βœ… F 2026-04-28 18:16:44
p*o*u*t*.stuttgarter-zeitung.de (WP 6.9.1) βœ… F 2026-04-28 18:11:31
f*r*a*-*e*t*c*l*n*.com βœ… B 2026-04-28 18:10:33
p*c*w*c*a*d*h*r*y.com (WP 6.8.5) βœ… D 2026-04-28 17:36:41
l*g*s*r*n*m*a*i*v*g*o.com (WP 5.5.1) ⚠️ F 2026-04-28 17:13:47
l*g*l*r*e*a*o*e*n*.com (WP 6.2.8) ⚠️ F 2026-04-28 17:03:43
t*l*j*r*z.es (WP 6.2.9) ⚠️ F 2026-04-28 16:52:40
c*u*c*u*i*e*s*t*.com βœ… F 2026-04-28 16:47:46
h*c*l*b*r*y*p*t*a*l*r.com βœ… F 2026-04-28 16:39:25
t*e*a*i*n*l*t*d*n*c*u*c*l.com βœ… F 2026-04-28 15:33:02
a*t*m*t*c*r*a*b*d*.com βœ… F 2026-04-28 15:17:05
m*l*r*l*t*.de βœ… F 2026-04-28 14:59:06
t*e*i*c*l*n*a*.com βœ… F 2026-04-28 14:57:12
c*u*a*t*u*s.com (WP 6.8.5) βœ… F 2026-04-28 14:29:51
c*r*l*.hayssamhoballah.com (WP 6.9.4) βœ… F 2026-04-28 14:21:33
i*s*i*u*o*m*r*g*r.com (WP 6.9.4) βœ… F 2026-04-28 14:11:50
m*d*a*d*a*l*n*.club βœ… F 2026-04-28 12:13:30
d*g*a*c*r*r*b*.com βœ… F 2026-04-28 11:53:39
o*c*e*s*o*m.de βœ… D 2026-04-28 11:43:57
n*u*o*a*t*r*a*a*e*y.com βœ… D 2026-04-28 11:27:09
a*t*c*a*e*s*l*s.com βœ… F 2026-04-28 10:30:11
p*y*i*i*n*k*n*r*o*h*a*.com (WP 6.9.4) βœ… D 2026-04-28 10:26:30
s*c*r*.completelyketo.shop βœ… C 2026-04-28 10:16:16
w*o*e*b*a*g*i*d*a*.org.au (WP 6.2.9) ⚠️ F 2026-04-28 10:07:19
s*a*p*d*g*t*l*f*r*a*a.it (WP 6.8.5) βœ… F 2026-04-28 09:14:19
r*s*t*u*o*g*s.com βœ… F 2026-04-28 08:15:53
c*m*l*t*l*k*t*.shop βœ… C 2026-04-28 08:02:52
l*c*n*u*t*r*a*s*r*t*g*c*.com (WP 6.9.4) βœ… F 2026-04-28 07:52:58
a*n*h*k*r*.at (WP 6.9.4) βœ… F 2026-04-28 07:22:39
g*u*p*n*i*n*s*.at (WP 6.9.4) βœ… F 2026-04-28 07:22:39
p*w*r*u*m*.at (WP 6.9.4) βœ… F 2026-04-28 07:22:39
e*e*a*s*e*c*e*.de (WP 6.9.4) βœ… F 2026-04-28 06:23:05
m*r*t*a*f*s*e*c*e*.de (WP 6.9.4) βœ… F 2026-04-28 06:23:05
d*c*o*d*a*a*t.com (WP 6.9.4) βœ… F 2026-04-28 05:34:49
k*p*-*l*n*n.de (WP 6.9.4) βœ… F 2026-04-28 05:23:37
c*m*u*.oercamp.de βœ… A 2026-04-28 04:40:14
c*n*.chaponline.com βœ… F 2026-04-28 04:39:47
c*t*.rc.um.edu.mo βœ… D 2026-04-28 04:39:46
r*s*d*r*e*t.com βœ… F 2026-04-28 04:35:36
m*t*g*r*i*s*n*a*.de (WP 6.4.8) ⚠️ F 2026-04-28 04:03:25
b*g*e*r*o*l*c*i*n.com βœ… F 2026-04-28 03:52:37
s*p*a*a*o*t*s*o*i.org (WP 6.9.4) πŸ”“ F 2026-04-28 03:50:51
i*s*e*t*r*o*s*o*s*a*e.com (WP 6.9.4) βœ… F 2026-04-28 03:46:21
i*s*e*t*o*m*i*o*.com βœ… F 2026-04-28 03:35:55
t*e*a*g*t*.com βœ… F 2026-04-28 03:08:18
c*r*s*i*n*i*k*l*e*e*e*t*.com (WP 6.9.4) βœ… F 2026-04-28 03:03:48
m*l*s*a*n*n*b*r*.com (WP 6.9.4) βœ… F 2026-04-28 02:28:19
t*e*a*i*c*r*l*.com βœ… F 2026-04-28 01:33:59
n*b*.com βœ… A 2026-04-28 01:13:37
a*p*i*a*i*n.aarch.dk (WP 6.9.4) βœ… F 2026-04-28 00:38:24
n*s*i*a*i*g.com βœ… F 2026-04-28 00:17:43
a*s*i*c*e*s*o*r*a*e*t*.com (WP 6.9.4) βœ… B 2026-04-27 23:52:36
k*h*e*-*e*t*n*.de (WP 6.9.1) βœ… F 2026-04-27 23:42:17
a*h*r*r*n*h*z*i*u*g.de (WP 6.9.1) βœ… F 2026-04-27 23:42:17
l*h*e*-*n*e*g*r.de (WP 6.9.1) βœ… F 2026-04-27 23:42:17
o*f*n*u*g*r*t*g*b*a*t.de (WP 6.9.1) βœ… F 2026-04-27 23:42:17
g*m*i*d*b*l*r*m.de (WP 6.9.4) βœ… F 2026-04-27 23:35:09
i*s*d*h*g*s*h*o*s*o*t*.com βœ… F 2026-04-27 23:22:45
d*o*h*s*h*m*.com βœ… C 2026-04-27 23:14:52
w*l*s*c*t*n*f*s*i*a*.de (WP 6.5.5) βœ… F 2026-04-27 23:11:26
p*r*a*d*s*s*o*t*.com βœ… F 2026-04-27 21:51:44
g*t*e*c*.ai βœ… F 2026-04-27 21:37:39
l*r*e*l*v*r.de (WP 6.5.8) βœ… F 2026-04-27 20:57:41

Top 50 Plugins

Plugin Count
elementor 2,445,231
contact-form-7 2,220,648
elementor-pro 1,379,303
woocommerce 1,143,781
revslider 827,215
js_composer 544,092
jetpack 487,323
wp-rocket 398,176
essential-addons-for-elementor-lite 370,785
header-footer-elementor 313,894
gutenberg-core 296,525
elementskit-lite 293,768
gravityforms 290,665
instagram-feed 283,026
google-analytics-for-wordpress 279,675
complianz-gdpr 275,213
google-site-kit 272,661
cookie-law-info 268,923
sitepress-multilingual-cms 240,854
bluehost-wordpress-plugin 225,598
wpforms-lite 217,902
astra-sites 210,379
litespeed-cache 192,054
gtranslate 165,117
gutenberg 161,373
cookie-notice 157,748
coblocks 155,492
the-events-calendar 140,489
popup-maker 132,457
astra-addon 120,870
bb-plugin 119,992
premium-addons-for-elementor 119,619
LayerSlider 117,351
mailchimp-for-wp 116,139
wp-smushit 115,765
tablepress 113,804
creame-whatsapp-me 105,288
duracelltomi-google-tag-manager 104,768
woocommerce-gateway-stripe 101,920
cleantalk-spam-protect 101,079
pro-elements 100,842
custom-fonts 100,795
akismet 99,711
click-to-chat-for-whatsapp 98,839
honeypot 98,360
smart-slider-3 96,900
megamenu 96,800
fusion-builder 95,419
pixelyoursite 94,312
formidable 91,967

Top 50 Themes

Theme Count
hello-elementor 791,754
Divi 651,874
astra 638,423
pub 198,997
generatepress 148,539
flatsome 148,049
Avada 145,070
h4 118,235
oceanwp 108,498
kadence 96,892
enfold 84,042
salient 81,017
bb-theme 76,055
twentytwentyfour 74,028
blocksy 70,940
twentytwentyfive 69,005
cocoon-master 68,877
betheme 66,038
twentyseventeen 65,444
dt-the7 54,654
woodmart 52,853
neve 47,768
twentytwentyone 41,438
bridge 40,735
Avada-Child-Theme 38,554
swell 36,756
gox 36,222
twentytwenty 36,033
lightning 35,692
twentytwentythree 33,905
bricks 29,400
Impreza 29,371
Newspaper 26,799
twentytwentytwo 26,445
epik-redesign 23,066
pro 21,916
storefront 21,852
extendable 21,847
uncode 21,553
twentysixteen 21,239
yith-wonder 20,232
sydney 19,913
themify-ultra 18,862
Total 17,795
twentyfifteen 16,937
porto 16,182
hestia 15,701
yootheme 14,811
thrive-theme 14,743
twentynineteen 14,661