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

Plugin: timed-content (Used by 1,766 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*h*e.academy (WP 7.0.2) F Jul 29, 2026
m*n*i*e*p*o*e*t*u*.com (WP 6.3.8) C Jul 29, 2026
l*v*a*d*u*g*g*.org (WP 6.8.1) D Jul 29, 2026
s*r*t*m*r*.a*.ke F Jul 29, 2026
s*u*i*r*n*e*w*r*-*s*b*a*d*n*u*g.de (WP 6.9.5) F Jul 29, 2026
t*a*s*a*c*a*c*n*a*c*.com (WP 7.0.2) F Jul 29, 2026
i*l*m*a*k*a*.com (WP 5.4.18) F Jul 29, 2026
p*i*a*e*c*r*.com (WP 7.0.2) F Jul 29, 2026
i*l*b*n*h*u*e.com (WP 7.0.2) F Jul 29, 2026
f*c*s*n*h*s*o*c*s*.com (WP 6.9.5) F Jul 29, 2026
f*c*s*n*t*l*.com F Jul 29, 2026
f*c*s*d*e*d*r.com (WP 7.0.2) F Jul 29, 2026
d*m*b.de (WP 7.0.2) F Jul 29, 2026
t*e*p*c*r*a*r*s*a*r*n*.com F Jul 29, 2026
x*r*-*o*t*n*.de F Jul 28, 2026
h*c*l*b*r*y*p*t.com F Jul 28, 2026
h*c*l*b*r*y*p*t*a*l*r.com F Jul 28, 2026
w*c*e*e*t.de (WP 6.9.5) F Jul 28, 2026
l*s*e*a*o*g*n*z*d*r*m*a*d*a*e*f*r*e*e*t*u*e*m.com F Jul 28, 2026
l*s*e*a*m*s*u*o*o*g*n*z*d*r*m*a*d*a*e*f*r*e*e*t.com F Jul 28, 2026
l*s*e*a*m*s*u*o*o*g*n*z*d*r*m*.com F Jul 28, 2026
l*s*e*a*m*s*u*o*l*w*n*o*c*m*n*.com F Jul 28, 2026
t*e*t*r*a*t*n*e*n.ch F Jul 28, 2026
s*f*r*r*p*b*i*.com F Jul 28, 2026
m*n*o*s*u*c.com (WP 6.7.1) D Jul 28, 2026
s*f*r*n*i*h*s.com F Jul 28, 2026
s*f*r*i*s*g*t*.com F Jul 28, 2026
d*e*d*r*z*i*u*g.de (WP 7.0.2) F Jul 28, 2026
s*f*a*i*.com F Jul 28, 2026
e*e*t*i*e*l*a*e.de F Jul 28, 2026
d*m*f*l*i*b*h*-*a*-*r*.de (WP 7.0.2) F Jul 28, 2026
m*n*e*i*l*n*w*n*e*b*r*.de (WP 6.8.3) F Jul 28, 2026
m*n*e*i*l*n*w*r*.de (WP 6.8.3) F Jul 28, 2026
m*n*e*i*l*n*v*e*s*n.de (WP 6.8.3) F Jul 28, 2026
m*n*e*-*s*a*d*h*m*u*g.de (WP 6.8.3) F Jul 28, 2026
m*n*e*i*l*n*b*c*u*.de (WP 6.8.3) F Jul 28, 2026
f*e*f*m*l*.c*.il (WP 7.0.2) F Jul 28, 2026
m*n*e*i*l*n*b*r*k*m*n.com (WP 6.8.3) F Jul 28, 2026
k*m*o*p*b*i*d*r*.ca D Jul 28, 2026
d*u*l*w*n*h*w.com (WP 6.8.6) F Jul 28, 2026
a*t*n*e*-*a*i*e*t.de F Jul 28, 2026
d*t*i*e*e*r*t*.com (WP 5.8.13) F Jul 28, 2026
w*s*m*n*t*r*u.org F Jul 28, 2026
c*p*i*e*i*e*f*s*.com F Jul 28, 2026
d*u*z*f*h*-*p*c*a*.de (WP 6.9.4) C Jul 28, 2026
n*w*e*g*t*a*.com (WP 5.5.18) F Jul 28, 2026
f*s*b*e*e*.de (WP 6.9.5) F Jul 28, 2026
f*c*t*g*n*-*u*k*.de F Jul 28, 2026
r*e*e*c*r*.de (WP 6.8.6) F Jul 28, 2026
p*e*a*-*a*e*t.com (WP 6.9.5) F Jul 28, 2026
k*e*h*s*i*g.de (WP 6.9.5) F Jul 28, 2026
c*n*e*t*n*b*t*s.de (WP 6.9.5) F Jul 28, 2026
y*s*m*t*p*r*n*r*.org F Jul 28, 2026
d*p*e*d*c*e*-*r*w.de (WP 7.0.2) F Jul 28, 2026
t*e*a*l*f*o*s.com F Jul 28, 2026
t*e*r*o*a*a*e*y.net (WP 6.0.12) F Jul 28, 2026
d*r*a*c*s*a*a*t*m*s*a*e*e*p*e*s.com (WP 7.0.2) F Jul 28, 2026
a*e*i*r*a*d*o.com (WP 7.0.2) F Jul 28, 2026
t*e*u*t*m*a*i*e*c*m*a*y.com F Jul 28, 2026
s*l*e*m*t*i*s.app (WP 6.4.8) F Jul 28, 2026
d*r*z*i*u*g*o*l*n*.com (WP 7.0.2) F Jul 28, 2026
l*r*t*a*t*p*s.com F Jul 28, 2026
n*a*e*v*u.gr (WP 6.9.5) F Jul 28, 2026
f*o*c*n*c*o*s*e*s*n*t*t*t*.com F Jul 28, 2026
f*o*-*a*t*r*.com F Jul 28, 2026
o*e*h*s*.pl F Jul 28, 2026
m*n*r*h*a*h*a.com (WP 6.9.5) F Jul 28, 2026
m*n*p*y*e*l*g*e.com (WP 7.0.2) D Jul 28, 2026
d*v*h*n*o*e*.de (WP 7.0.2) F Jul 28, 2026
s*i*l*f*i*l*.de (WP 7.0.2) F Jul 28, 2026
i*h*n*-*n*e*t*n*.com (WP 6.9.5) F Jul 28, 2026
b*o*k*b*r*c*.de (WP 7.0.2) F Jul 28, 2026
p*e*i*r*-*a*s*o*t.com (WP 6.9.5) F Jul 28, 2026
s*a*a*i*s.com F Jul 28, 2026
f*r*e*a*s.org F Jul 27, 2026
i*k*r.ag (WP 6.8.5) F Jul 27, 2026
d*n*y*w*r*s.com (WP 7.0.2) F Jul 27, 2026
p*e*i*.com (WP 7.0.2) F Jul 27, 2026
t*e*l*a*i*a*a*d*.com D Jul 27, 2026
a*o*k.org (WP 7.0.2) F Jul 27, 2026
t*r*e*a*a*r*r*.cat (WP 6.8.6) F Jul 27, 2026
t*x*l*h*m*.com F Jul 27, 2026
r*a*l*f*w*t*j*c*h*b*s.com F Jul 27, 2026
r*a*l*f*m*n*s*r*.com F Jul 27, 2026
f*m*m.com (WP 6.7.5) F Jul 27, 2026
m*t*r*o*t*o*.ir F Jul 27, 2026
m*s*k*c*u*e*a*f*l*.de (WP 7.0.2) F Jul 27, 2026
d*c*r*h*i*r*r*.org F Jul 27, 2026
f*a*e*l*u*-*a*b*r*.de (WP 6.8.6) F Jul 27, 2026
i*s*l*a*k*a*f.de (WP 6.8.6) F Jul 27, 2026
l*c*t*r*a*f*h*m*u*g.de (WP 6.8.6) F Jul 27, 2026
w*d*l*h*l*m*r*t*o*.de (WP 6.8.6) F Jul 27, 2026
s*r*e*a*e*l*u*-*e*d*l.de (WP 6.8.6) F Jul 27, 2026
n*c*t*e*z*h*e*.de (WP 6.8.6) F Jul 27, 2026
s*p*u*i*x*m*s*-*u*.de (WP 6.8.6) F Jul 27, 2026
f*e*a*o*r*u*.com (WP 6.9.5) D Jul 27, 2026
f*e*a*o.com (WP 6.9.5) D Jul 27, 2026
c*n*l*i*t*i*u*i*g.com F Jul 27, 2026
l*m*s*o*a*z*.com (WP 7.0.2) F Jul 27, 2026
f*n*a*t*r.nl D Jul 27, 2026

Top 50 Plugins

Plugin Count
elementor 1,776,840
contact-form-7 1,758,478
elementor-pro 1,055,074
woocommerce 817,523
revslider 611,279
jetpack 457,533
js_composer 421,938
wp-rocket 341,667
essential-addons-for-elementor-lite 266,173
complianz-gdpr 259,008
gravityforms 257,969
google-site-kit 232,386
cookie-law-info 229,699
instagram-feed 225,821
sitepress-multilingual-cms 211,333
header-footer-elementor 208,143
google-analytics-for-wordpress 206,707
bluehost-wordpress-plugin 192,722
elementskit-lite 181,340
gutenberg 167,440
cookie-notice 149,808
litespeed-cache 143,617
gtranslate 125,686
wpforms-lite 124,882
the-events-calendar 122,872
gutenberg-core 118,836
astra-sites 114,110
popup-maker 110,286
woocommerce-payments 110,090
tablepress 102,271
honeypot 98,128
astra-addon 94,242
wp-smushit 91,393
coblocks 91,360
duracelltomi-google-tag-manager 90,662
layerslider 89,815
all-in-one-seo-pack 89,546
bb-plugin 87,277
akismet 85,312
premium-addons-for-elementor 84,794
cleantalk-spam-protect 83,108
ml-slider 83,006
mailchimp-for-wp 82,301
megamenu 80,581
woocommerce-gateway-stripe 79,920
jet-engine 77,827
fusion-builder 77,530
ewww-image-optimizer 76,707
wp-pagenavi 76,574
smart-slider-3 76,516

Top 50 Themes

Theme Count
hello-elementor 622,854
Divi 498,842
astra 416,322
flatsome 137,650
Avada 121,751
generatepress 115,146
pub 82,875
oceanwp 80,967
kadence 79,065
enfold 69,212
salient 65,526
twentyseventeen 54,508
bb-theme 53,547
betheme 52,521
twentytwentyfour 52,277
blocksy 51,124
cocoon-master 49,306
dt-the7 45,611
twentytwentyfive 44,890
woodmart 42,031
h4 41,331
neve 38,332
Avada-Child-Theme 37,020
gox 36,279
bridge 31,570
twentytwentyone 30,405
lightning 29,914
twentytwenty 28,851
swell 27,943
bricks 26,539
Impreza 26,135
Newspaper 24,300
twentytwentythree 22,160
epik-redesign 19,218
twentytwentytwo 18,866
uncode 18,639
twentysixteen 17,652
pro 17,630
sydney 16,648
storefront 16,402
Total 14,495
hello-theme-child-master 14,034
factory-templates-4 13,726
themify-ultra 13,004
extendable 12,960
hestia 12,657
yootheme 12,597
yith-wonder 12,316
porto 12,027
twentyfifteen 11,829