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

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

Timed Content

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*v*t*i*k*m*l*.com (WP 6.9.4) F Jun 30, 2026
k*s*.org (WP 7.0) F Jun 30, 2026
g*d*e*h*n*s*v*t*l*p*u*.com (WP 7.0) D Jun 30, 2026
j*o*g*m*r.com (WP 6.9.4) D Jun 30, 2026
c*t*l*n*e*h*v*r*i*.com (WP 7.0) F Jun 30, 2026
l*n*r*d*r*r*s*.net F Jun 30, 2026
r*m*t*s*a*f.ph F Jun 30, 2026
p*n*r*a*i*c*n*e*.o*g.uk A Jun 30, 2026
c*n*r*-*h*r*p*e.be (WP 7.0) F Jun 30, 2026
g*v*i*2*o*d*i*l.org D Jun 30, 2026
b*i*e*b*e.com F Jun 30, 2026
j*b*s*u*e*t*.com C Jun 30, 2026
w*a*e*r*a*.org F Jun 30, 2026
z*i*-*e*k*s*a*t.de F Jun 30, 2026
r*l*i*e*a*e.o*g.au F Jun 30, 2026
p*e*i*.de (WP 7.0) F Jun 29, 2026
g*l*a*s*o*.com (WP 6.9.4) F Jun 29, 2026
c*-*l.org (WP 7.0) F Jun 29, 2026
h*g*l*n*p*r*b*p*i*t.com F Jun 29, 2026
h*t*l*s*h*a*z*.de F Jun 29, 2026
t*o*a*h*g.de (WP 7.0) F Jun 29, 2026
o*t*e*p*t*r.nl F Jun 29, 2026
s*d*f*a*t*o*.net (WP 7.0) F Jun 29, 2026
f*r*o*s*h*f*.ir F Jun 21, 2026
f*g*n*e*n*e*g.de (WP 7.0) D Jun 21, 2026
k*u*m*n*s*e*e*n*e*e*f*r*.de (WP 6.9.4) F Jun 21, 2026
v*s*a*v*s*c*f*.de (WP 7.0) F Jun 21, 2026
r*d*o*t*d*e*h*a*.nl (WP 7.0) F Jun 21, 2026
b*d*n*e*c*c*i*g.de (WP 7.0) F Jun 20, 2026
k*o*c*.nl F Jun 20, 2026
p*d*a*p*s.ru F Jun 20, 2026
l*n*m*t*g*r*i*j*n*e*.de (WP 6.8.5) F Jun 20, 2026
e*2*.com (WP 6.8.5) F Jun 19, 2026
r*z*a*e*t*r*f*.hu F Jun 19, 2026
s*h*u*r*i*z.de (WP 7.0) F Jun 19, 2026
h*e*t*n*r*k*r*e*.de (WP 6.9.4) F Jun 18, 2026
e*k*u*m*n*s*e*e*n*e.de (WP 6.9.4) F Jun 18, 2026
s*x*l*g*e*w*l*w*-*a*n*-*i*r*e.be (WP 7.0) F Jun 17, 2026
s*x*l*g*e*w*l*w*-*a*n*l*m*e*t.be (WP 7.0) F Jun 17, 2026
s*x*l*g*e*w*t*r*a*l*b*i*s*o*t.be (WP 7.0) F Jun 17, 2026
s*x*l*g*e*s*i*t*j*s*e*t*n*n*o*e.be (WP 7.0) F Jun 17, 2026
s*x*l*g*e*m*l*n*e*k*s*i*t*e*n.be (WP 7.0) F Jun 17, 2026
s*x*l*g*e*j*t*e.be (WP 7.0) F Jun 17, 2026
m*l*n*e*k*s*i*t*j*a*-*e*o*o*u*.be (WP 7.0) F Jun 17, 2026
a*d*r*e*h*-*e*o*o*u*.be (WP 7.0) F Jun 17, 2026
j*g*r*a*o*b*a*s*.es (WP 7.0) D Jun 17, 2026
b*s*b*d*i*s*e*n*s*e*.org (WP 6.9.4) F Jun 17, 2026
a*l*s*o*r*u*s*.nl (WP 7.0) F Jun 17, 2026
r*s*o*k*m*r*t*o*.de (WP 6.8.5) F Jun 17, 2026
h*t*l*o*r*a*e*.nl (WP 6.8.5) F Jun 17, 2026
t*e*v*f*e*p*o.de (WP 6.0.9) D Jun 17, 2026
t*a*t*u*i*n.c*m.ar (WP 4.8.25) F Jun 17, 2026
h*t*l*w*s*r*c*.de (WP 7.0) F Jun 16, 2026
c*c*m*.c*m.br F Jun 16, 2026
i*c*a*e*.c*m.br (WP 6.4.8) D Jun 16, 2026
r*z*a*e*t*s*o*a.hu F Jun 16, 2026
r*j*n*.c*m.my (WP 6.9.4) F Jun 16, 2026
s*p*t*m*r*l*k*.o*g.au F Jun 16, 2026
m*l*n*s*i*e.de F Jun 15, 2026
h*n*a*.de F Jun 15, 2026
k*e*t*v*.cafe F Jun 15, 2026
m*l*n*e*s.cafe F Jun 15, 2026
a*i*a*n*k*t*n*.ru (WP 7.0) F Jun 15, 2026
f*h*r*d*e*k*t*t*-*m*m*c*t*n*e*g.de (WP 7.0) F Jun 15, 2026
v*r*a*b*r*-*i*-*e*s*e*l*c*k*i*.de F Jun 15, 2026
b*i*h*-*i*s.c*.uk (WP 7.0) D Jun 15, 2026
c*l*g*o*a*e*e.es (WP 6.8.5) F Jun 15, 2026
e*-*a*o*s*r*e*e*.de (WP 7.0) F Jun 15, 2026
k*l*u*v*r*i*-*o*g*o*z*a*s*n.de (WP 7.0) F Jun 15, 2026
m*c*a*f*a*a.cz F Jun 14, 2026
m*n*-*e*o*o*u*.be (WP 7.0) F Jun 14, 2026
m*u*c*o*-*e*o*o*u*.be (WP 7.0) F Jun 14, 2026
s*x*l*g*e*b*r*h*m*s*i*t*-*g*t*e.be (WP 7.0) F Jun 14, 2026
s*x*l*g*e*e*t*r*e*k.be (WP 7.0) F Jun 14, 2026
s*x*l*g*e*e*e*e.be (WP 7.0) F Jun 14, 2026
s*x*l*g*e*g*n*h*r*n.be (WP 7.0) F Jun 14, 2026
s*x*l*g*e*k*e*e*b*r*.be (WP 7.0) F Jun 14, 2026
s*x*l*g*e*s*i*t*g*l*e*.be (WP 7.0) F Jun 14, 2026
u*c*e*s*x*l*g*e.be (WP 7.0) F Jun 14, 2026
s*h*e*b*e*-*e*o*o*u*.be (WP 7.0) F Jun 14, 2026
b*u*e*l*s*s*x*l*g*e.be (WP 7.0) F Jun 14, 2026
b*a*a*t*w*l*o*-*e*o*o*u*.be (WP 7.0) F Jun 14, 2026
a*d*r*h*m*s*x*l*g*e.be (WP 7.0) F Jun 14, 2026
f*r*s*-*e*o*o*u*.be (WP 7.0) F Jun 14, 2026
s*x*l*g*e*b*l*i*u*.be (WP 7.0) F Jun 14, 2026
m*n*c*e*r*c*t*.online (WP 7.0) A Jun 14, 2026
g*n*e*a*-*e*.nl (WP 7.0) F Jun 14, 2026
a*-*o*d.de B Jun 14, 2026
b*a*c*e*a*t*p*o*u*t*o*s.nl (WP 7.0) F Jun 14, 2026
h*t*l*l*u*h*f*u*r.de (WP 6.1.10) F Jun 14, 2026
t*e*e*l*t*e*e*l*f*.com F Jun 14, 2026
c*a*r*.o*g.br A Jun 14, 2026
b*r*b*u*-*p*t*e*e*p*t*d*m.de (WP 7.0) F Jun 13, 2026
k*n*e*w*n*c*z*n*r*m*m*g*e*u*g.de (WP 7.0) F Jun 13, 2026
b*f*n.ch (WP 6.8.5) F Jun 13, 2026
d*-*n*-*e*n*t*e*.de (WP 6.3.8) F Jun 13, 2026
t*e*v*r*i*h*r*n*-*c*e*e.de (WP 6.3.8) F Jun 13, 2026
u*l*e*e*.online (WP 6.3.8) F Jun 13, 2026
o*h*i*z*w.pl (WP 7.0) F Jun 13, 2026
o*t*m*m*r*p*r*y.pl (WP 7.0) F Jun 13, 2026

Top 50 Plugins

Plugin Count
elementor 1,770,670
contact-form-7 1,752,430
elementor-pro 1,052,476
woocommerce 816,098
revslider 609,110
jetpack 455,281
js_composer 420,184
wp-rocket 341,921
essential-addons-for-elementor-lite 264,914
complianz-gdpr 257,462
gravityforms 257,435
google-site-kit 232,555
cookie-law-info 228,544
instagram-feed 224,942
sitepress-multilingual-cms 210,671
header-footer-elementor 206,836
google-analytics-for-wordpress 205,959
bluehost-wordpress-plugin 192,462
elementskit-lite 180,242
gutenberg 167,162
cookie-notice 148,974
litespeed-cache 143,534
gtranslate 124,906
wpforms-lite 123,932
the-events-calendar 122,493
astra-sites 113,329
popup-maker 109,786
woocommerce-payments 109,450
gutenberg-core 106,504
tablepress 102,169
honeypot 97,746
astra-addon 93,790
wp-smushit 90,919
duracelltomi-google-tag-manager 90,369
layerslider 89,411
all-in-one-seo-pack 89,154
coblocks 87,767
bb-plugin 87,000
akismet 85,051
premium-addons-for-elementor 84,446
ml-slider 83,072
cleantalk-spam-protect 82,690
mailchimp-for-wp 81,877
megamenu 80,262
woocommerce-gateway-stripe 79,553
jet-engine 77,858
fusion-builder 77,168
ewww-image-optimizer 76,597
wp-pagenavi 76,492
smart-slider-3 76,197

Top 50 Themes

Theme Count
hello-elementor 621,008
Divi 496,644
astra 414,290
flatsome 137,871
Avada 121,202
generatepress 115,012
oceanwp 80,398
kadence 78,936
pub 74,605
enfold 68,814
salient 65,240
twentyseventeen 54,376
bb-theme 53,465
betheme 52,425
twentytwentyfour 52,233
blocksy 50,857
cocoon-master 49,213
dt-the7 45,470
twentytwentyfive 44,929
woodmart 42,965
neve 38,166
h4 37,144
Avada-Child-Theme 36,929
gox 36,231
bridge 31,369
twentytwentyone 30,344
lightning 29,931
twentytwenty 28,789
swell 27,967
bricks 26,477
Impreza 26,084
Newspaper 24,190
twentytwentythree 22,123
epik-redesign 19,169
twentytwentytwo 18,776
uncode 18,532
pro 17,631
twentysixteen 17,610
sydney 16,563
storefront 16,339
Total 14,409
hello-theme-child-master 14,016
factory-templates-4 13,732
themify-ultra 12,964
extendable 12,794
hestia 12,599
yootheme 12,534
yith-wonder 12,153
porto 11,942
twentyfifteen 11,851