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

Plugin: timed-content (Used by 1,764 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
h*s*r*n*i*g.com (WP 7.0.2) F Jul 19, 2026
k*l*a*l*h.com F Jul 19, 2026
h*k*w*n*e*l*u*s*r*e.com (WP 7.0.2) F Jul 19, 2026
a*p*e*t*c*s*i*r*.org F Jul 19, 2026
t*h*m*h*.com (WP 7.0.2) F Jul 19, 2026
h*v*g*a*.com (WP 5.2.21) F Jul 19, 2026
a*u*c.ca F Jul 19, 2026
b*i*l*a*t*p*i*.com F Jul 19, 2026
b*i*l*a*t*o*t*k.com F Jul 19, 2026
p*p*b*.com F Jul 19, 2026
t*b*d*n*o*.com F Jul 19, 2026
d*b*m*v*n*.com F Jul 19, 2026
r*s*w*.com D Jul 18, 2026
o*l*n*g*o*w*l*.com D Jul 18, 2026
z*-*t*d*t*r*.com F Jul 18, 2026
p*n*o*s*f*r*.com F Jul 18, 2026
s*d*a*s*o*f.com F Jul 18, 2026
g*a*e*a*b*b*e.org F Jul 18, 2026
b*i*g*r*l*m*i*g.com F Jul 18, 2026
d*a*s*h*s*n*y*u.com F Jul 18, 2026
n*d*4*h*m.de C Jul 18, 2026
m*r*o*h*s*o*i*a*s*c*e*y.o*g.uk (WP 6.8.6) F Jul 18, 2026
k*n*a*m*s*e*.com F Jul 18, 2026
o*l*n*-*e*t*l*s*p*l*e*.com F Jul 18, 2026
m*l*k*m.audio C Jul 18, 2026
f*m*l*-*o*o*h*o*i*g.de (WP 6.9.5) F Jul 18, 2026
f*c*b*a*t*s*i*n*e.com C Jul 18, 2026
d*l*a*o*w*s*e*b*r*.de (WP 6.9) F Jul 18, 2026
a*r*s*s*r*a.eus F Jul 18, 2026
c*c*e*o*t*a*e.nl (WP 7.0.2) B Jul 18, 2026
p*v*t.c*.uk F Jul 18, 2026
o*e*i*i*b*n*o.com D Jul 18, 2026
d*i*l.com F Jul 18, 2026
s*u*i*o*e.hu (WP 6.9.5) F Jul 18, 2026
k*m*r*a*p.com (WP 7.0.2) F Jul 18, 2026
p*y*h*l*g*e*-*a*i*7.fr F Jul 18, 2026
h*a*e*f*i*e*o*t.de (WP 7.0.2) F Jul 18, 2026
b*e*e*-*i*t*r*a*f*e*i*.com (WP 7.0.2) F Jul 18, 2026
f*b*r*i*g*a*.com (WP 6.8.6) F Jul 18, 2026
d*a*a*o*e*l.com F Jul 18, 2026
g*l*n.pl (WP 6.4.8) F Jul 18, 2026
b*e*k*o*m*u*d*a.com (WP 7.0.2) F Jul 18, 2026
p*.e*u.bn F Jul 18, 2026
d*z*o*d*c*p*i*n*o*k.com F Jul 18, 2026
s*v*y*.com (WP 7.0.1) F Jul 18, 2026
f*s*i*a*g*o*a*.it (WP 6.0.12) F Jul 18, 2026
d*a*o*i*o*.com D Jul 18, 2026
d*r*a*g*b*.de (WP 6.9.4) F Jul 18, 2026
k*r*h*-*a*b*c*.de (WP 7.0.1) F Jul 18, 2026
s*u*h*e*l*i*y.com F Jul 18, 2026
d*y*e*h*r*f*s.com (WP 7.0.2) F Jul 18, 2026
k*a*w*i*.com (WP 7.0.2) F Jul 18, 2026
c*n*r*s*d*o*a*i*b*n.cat (WP 7.0) F Jul 18, 2026
w*c*s*.org F Jul 18, 2026
s*i*n*e*-*s*c*o*o*u*.be (WP 7.0.1) F Jul 18, 2026
c*n*r*-*s*c*o*o*i*u*-*a*n*-*i*l*s.be (WP 7.0.1) F Jul 18, 2026
o*d*r*e*r*e*e*e*e*.com (WP 6.9.4) F Jul 18, 2026
d*s*g*p*e*s*s*c*s*n.de C Jul 17, 2026
r*c*a*d*b*o*n*d.com B Jul 17, 2026
t*y*m*v*t*i*k*m*l*.com (WP 6.9.4) F Jul 17, 2026
s*u*h*a*t*r*p*s*e*.com F Jul 17, 2026
d*v*n*h*w*i*.com F Jul 17, 2026
m*d*c*l*e*u*y*t*t*g*r*.com (WP 7.0.2) F Jul 17, 2026
m*d*c*l*d*n*a*-*u*p*y.com F Jul 17, 2026
m*d*c*l*b*a*t*-*t*t*g*r*.com (WP 7.0.2) F Jul 17, 2026
m*n*a*8.gr (WP 7.0.2) F Jul 17, 2026
s*a*f*s*d*s*g*.ch (WP 5.2.4) F Jul 17, 2026
t*e*l*b*t*.c*.uk (WP 5.3.21) F Jul 17, 2026
c*a*h*r*f*s*i*n*e*-*a*n*u*.be (WP 7.0.1) F Jul 17, 2026
c*a*h*r*f*s*i*n*e*-*r*b*n*-*a*l*n.be (WP 7.0.1) F Jul 17, 2026
c*a*h*r*f*s*i*n*e*-*o*r*a*.be (WP 7.0.1) F Jul 17, 2026
c*a*h*r*f*s*i*n*e*-*o*s.be (WP 7.0.1) F Jul 17, 2026
c*a*h*r*f*s*i*n*e*-*i*g*.be (WP 7.0.1) F Jul 17, 2026
c*a*h*r*f*s*i*n*e*-*h*r*e*o*.be (WP 7.0.1) F Jul 17, 2026
c*a*h*r*f*s*i*n*e*-*a*u*.be (WP 7.0.1) F Jul 17, 2026
c*a*h*r*f*s*i*n*e*-*e*g*q*e.be (WP 7.0.1) F Jul 17, 2026
s*h*e*b*e*-*s*c*o*o*u*.be (WP 7.0.1) F Jul 17, 2026
s*i*t*g*l*e*-*s*c*o*o*u*.be (WP 7.0.1) F Jul 17, 2026
c*a*l*r*i*p*y.be (WP 7.0.1) F Jul 17, 2026
f*r*s*-*s*c*o*o*u*.be (WP 7.0.1) F Jul 17, 2026
t*e*a*g*o*a*.net (WP 7.0) F Jul 17, 2026
c*n*r*-*h*r*p*u*i*u*-*o*t*e*l*e*.fr (WP 7.0.1) D Jul 17, 2026
p*y*h*l*g*e*-*a*i*1*.fr F Jul 17, 2026
p*y*h*l*g*e*-*a*i*8.fr F Jul 17, 2026
e*d*-*e*g*q*e.be (WP 7.0.1) F Jul 17, 2026
t*e*a*e*t*s*b*u*e*l*s.be (WP 7.0.1) D Jul 17, 2026
t*r*p*u*-*e*g*a.be (WP 7.0.1) D Jul 17, 2026
t*r*p*a*t*r*p*u*a.be (WP 7.0.1) F Jul 17, 2026
t*e*a*i*t*b*l*i*m.be (WP 7.0.1) D Jul 17, 2026
p*a*e*o*m*-*y*n*s*-*o*r*a*.be (WP 7.0.1) F Jul 17, 2026
p*a*e*o*m*-*y*n*s*-*a*u*.be (WP 7.0.1) F Jul 17, 2026
p*a*e*o*m*-*y*n*s*-*o*s.be (WP 7.0.1) F Jul 17, 2026
p*a*e*o*m*-*y*n*s*-*r*b*n*.be (WP 7.0.1) F Jul 17, 2026
h*p*o*e*l*x*m*o*r*.be (WP 7.0.1) F Jul 17, 2026
h*p*o*e*a*e*l*o.be (WP 7.0.1) F Jul 17, 2026
h*p*o*e*n*v*l*e*.be (WP 7.0.1) F Jul 17, 2026
h*p*o*e*b*a*n*-*a*l*u*.be (WP 7.0.1) F Jul 17, 2026
h*p*o*e*b*a*a*t*w*l*o*.be (WP 7.0.1) F Jul 17, 2026
h*p*o*e*n*m*r.eu (WP 7.0.1) F Jul 17, 2026
h*p*o*e*m*n*.be (WP 7.0.1) F Jul 17, 2026

Top 50 Plugins

Plugin Count
elementor 1,775,410
contact-form-7 1,756,861
elementor-pro 1,054,352
woocommerce 817,193
revslider 610,632
jetpack 456,984
js_composer 421,389
wp-rocket 341,558
essential-addons-for-elementor-lite 265,838
complianz-gdpr 258,645
gravityforms 257,841
google-site-kit 232,629
cookie-law-info 229,401
instagram-feed 225,599
sitepress-multilingual-cms 211,043
header-footer-elementor 207,927
google-analytics-for-wordpress 206,487
bluehost-wordpress-plugin 192,657
elementskit-lite 181,083
gutenberg 167,387
cookie-notice 149,562
litespeed-cache 143,604
gtranslate 125,468
wpforms-lite 124,570
the-events-calendar 122,730
gutenberg-core 116,889
astra-sites 113,943
popup-maker 110,116
woocommerce-payments 109,934
tablepress 102,217
honeypot 98,024
astra-addon 94,099
wp-smushit 91,277
coblocks 90,850
duracelltomi-google-tag-manager 90,570
layerslider 89,638
all-in-one-seo-pack 89,398
bb-plugin 87,215
akismet 85,242
premium-addons-for-elementor 84,670
ml-slider 83,018
cleantalk-spam-protect 82,964
mailchimp-for-wp 82,170
megamenu 80,497
woocommerce-gateway-stripe 79,809
jet-engine 77,865
fusion-builder 77,431
ewww-image-optimizer 76,647
wp-pagenavi 76,548
smart-slider-3 76,440

Top 50 Themes

Theme Count
hello-elementor 622,436
Divi 498,224
astra 415,945
flatsome 137,758
Avada 121,597
generatepress 114,990
pub 81,579
oceanwp 80,811
kadence 78,952
enfold 69,087
salient 65,425
twentyseventeen 54,452
bb-theme 53,545
betheme 52,488
twentytwentyfour 52,199
blocksy 51,064
cocoon-master 49,279
dt-the7 45,584
twentytwentyfive 44,893
woodmart 42,252
h4 40,675
neve 38,276
Avada-Child-Theme 36,980
gox 36,267
bridge 31,503
twentytwentyone 30,369
lightning 29,931
twentytwenty 28,844
swell 27,970
bricks 26,528
Impreza 26,114
Newspaper 24,256
twentytwentythree 22,161
epik-redesign 19,213
twentytwentytwo 18,861
uncode 18,616
twentysixteen 17,635
pro 17,627
sydney 16,615
storefront 16,392
Total 14,451
hello-theme-child-master 14,018
factory-templates-4 13,731
themify-ultra 12,993
extendable 12,949
hestia 12,636
yootheme 12,565
yith-wonder 12,277
porto 12,019
twentyfifteen 11,850