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
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
h*b*y*r*c*o*.nl (WP 7.0) F Jun 12, 2026
b*n*s.biz (WP 6.4.3) F Jun 12, 2026
r*c*t*a*a*k*.com F Jun 12, 2026
c*n*r*-*s*c*o*o*i*u*-*r*a*n*m.be (WP 7.0) F Jun 12, 2026
c*m*u*e*s*m*l*r.de (WP 7.0) F Jun 12, 2026
o*d*r*r*m*n*g*e*.dk (WP 7.0) D Jun 12, 2026
s*h*a*e*b*r*.events F Jun 11, 2026
p*y*h*l*g*e*r*m*o*r*e*e*t.be (WP 7.0) F Jun 11, 2026
e*a*a*e*r*i*i*g.ca (WP 7.0) F Jun 11, 2026
c*n*r*-*h*r*p*u*i*u*-*h*d*-*a*n*-*e*e*e.be (WP 7.0) F Jun 10, 2026
c*n*r*-*h*r*p*u*i*u*-*n*e*l*c*t.be (WP 7.0) F Jun 10, 2026
c*n*r*-*h*r*p*u*i*u*-*a*n*-*o*s*-*e*-*o*d*.be (WP 7.0) F Jun 10, 2026
c*n*r*-*h*r*p*u*i*u*-*o*k*l*e*g.be (WP 7.0) F Jun 10, 2026
c*n*r*-*h*r*p*u*i*u*-*e*t*.be (WP 7.0) F Jun 10, 2026
c*n*r*-*h*r*p*u*i*u*-*o*u*e*a*n*p*e*r*.be (WP 7.0) F Jun 10, 2026
c*n*r*-*h*r*p*u*i*u*-*o*u*e*a*n*l*m*e*t.be (WP 7.0) F Jun 10, 2026
c*n*r*-*h*r*p*u*i*u*-*c*a*r*e*k.be (WP 7.0) F Jun 10, 2026
c*n*r*-*h*r*p*u*i*u*-*o*e*t.be (WP 7.0) F Jun 10, 2026
c*n*r*-*h*r*p*u*i*u*-*u*e*g*e*.be (WP 7.0) F Jun 10, 2026
c*n*r*-*h*r*p*u*i*u*-*a*n*-*i*l*s.be (WP 7.0) F Jun 10, 2026
c*n*r*-*h*r*p*u*i*u*-*v*r*.be (WP 7.0) F Jun 10, 2026
c*n*r*-*h*r*p*u*i*u*-*i*e*l*s.be (WP 7.0) F Jun 10, 2026
c*n*r*-*h*r*p*u*i*u*-*a*n*u*.be (WP 7.0) F Jun 10, 2026
m*r*l*m*e*t.de F Jun 10, 2026
j*z*-*e*d*n*e*m.de (WP 7.0) F Jun 10, 2026
g*u*n*-*e*l.de F Jun 10, 2026
d*b*.ru F Jun 10, 2026
s*u*a*a*-*r*s*e*t*i*h.de (WP 7.0) F Jun 10, 2026
k*r*t*-*i*g*n.de F Jun 9, 2026
m*e*n*r*e*e*s*u*d.de (WP 7.0) F Jun 9, 2026
v*r*e*d*n*p*n*e*n*t.nl (WP 6.9.4) F Jun 9, 2026
p*y*i*i*n*.com (WP 6.2.2) F Jun 9, 2026
z*t*m*d*a.net (WP 6.4.8) D Jun 9, 2026
e*t*f*e*n.de (WP 7.0) F Jun 9, 2026
o*a*i*j*s*o.fi D Jun 9, 2026
k*e*z*e*g*e*t*v*l.de F Jun 8, 2026
g*a*e*-*t*r*o*e*a*i*n.de (WP 6.8.5) D Jun 8, 2026
c*r*s*i*.de C Jun 7, 2026
r*t*a*s*a*o*h*k*.at (WP 6.8.3) F Jun 7, 2026
l*u*k*r*o*n.nl F Jun 7, 2026
b*g*m*r*.c*.il (WP 7.0) F Jun 7, 2026
d*y*o*a*.ua C Jun 7, 2026
t*s*v*h*e*w*l*.de F Jun 7, 2026
m*l*i*e*i*u*l*r.ar (WP 7.0) F Jun 7, 2026
b*g*e*r*o*l*c*i*n.com F Jun 7, 2026
o*6*l.be (WP 7.0) F Jun 7, 2026
c*a*h*l*e*e.be (WP 7.0) F Jun 7, 2026
d*k*s*-*g*.de (WP 7.0) F Jun 7, 2026
d*k*g*9*3.de (WP 7.0) F Jun 7, 2026
e*c*n*s.cat (WP 6.9.4) F Jun 7, 2026
p*y*h*l*g*e*c*i*i*i*n*b*l*i*u*.be (WP 7.0) F Jun 7, 2026
h*p*o*h*r*p*e*b*l*i*u*.be (WP 7.0) F Jun 7, 2026
h*p*o*e*t*u*n*i.be (WP 7.0) F Jun 7, 2026
c*a*h*n*-*c*l*i*e*m*n*.be (WP 7.0) F Jun 7, 2026
c*a*h*n*-*c*l*i*e*t*u*n*i.be (WP 7.0) F Jun 7, 2026
c*a*h*n*-*c*l*i*e*l*e*e.be (WP 7.0) F Jun 7, 2026
i*e*l*s*s*x*l*g*e.be (WP 7.0) F Jun 7, 2026
t*e*a*i*-*o*p*e*l*x*m*o*r*.be (WP 7.0) F Jun 7, 2026
a*n*a*r*-*y*n*t*e*a*e*t*s.be (WP 7.0) F Jun 7, 2026
p*o*u*e*1*.be (WP 7.0) F Jun 7, 2026
t*e*a*i*-*r*b*n*-*a*l*n.be F Jun 7, 2026
p*y*h*l*g*e*n*m*r.be (WP 7.0) F Jun 7, 2026
b*g*i*y*i*e*h*w*i*.com F Jun 7, 2026

Top 50 Plugins

Plugin Count
elementor 1,769,947
contact-form-7 1,751,151
elementor-pro 1,052,329
woocommerce 816,084
revslider 608,676
jetpack 454,679
js_composer 419,902
wp-rocket 342,079
essential-addons-for-elementor-lite 264,695
gravityforms 257,300
complianz-gdpr 257,186
google-site-kit 232,602
cookie-law-info 228,240
instagram-feed 224,724
sitepress-multilingual-cms 210,596
header-footer-elementor 206,656
google-analytics-for-wordpress 205,675
bluehost-wordpress-plugin 192,331
elementskit-lite 180,017
gutenberg 167,120
cookie-notice 148,816
litespeed-cache 143,825
gtranslate 124,781
wpforms-lite 123,738
the-events-calendar 122,341
astra-sites 113,144
popup-maker 109,698
woocommerce-payments 109,299
gutenberg-core 103,141
tablepress 102,135
honeypot 97,728
astra-addon 93,740
wp-smushit 90,814
duracelltomi-google-tag-manager 90,306
layerslider 89,283
all-in-one-seo-pack 89,071
bb-plugin 86,901
coblocks 86,693
akismet 84,979
premium-addons-for-elementor 84,367
cleantalk-spam-protect 82,573
ml-slider 81,991
mailchimp-for-wp 81,773
megamenu 80,196
woocommerce-gateway-stripe 79,441
jet-engine 77,892
fusion-builder 77,057
ewww-image-optimizer 76,627
wp-pagenavi 76,457
smart-slider-3 76,121

Top 50 Themes

Theme Count
hello-elementor 620,749
Divi 496,071
astra 413,940
flatsome 138,152
Avada 120,987
generatepress 114,820
oceanwp 80,309
kadence 78,841
pub 72,283
enfold 68,738
salient 65,153
twentyseventeen 54,318
bb-theme 53,400
betheme 52,414
twentytwentyfour 52,234
blocksy 50,827
cocoon-master 49,206
dt-the7 45,445
twentytwentyfive 44,937
woodmart 43,254
neve 38,122
Avada-Child-Theme 36,904
gox 36,229
h4 36,037
bridge 31,326
twentytwentyone 30,291
lightning 29,946
twentytwenty 28,762
swell 27,969
bricks 26,481
Impreza 26,076
Newspaper 24,176
twentytwentythree 22,095
epik-redesign 19,143
twentytwentytwo 18,767
uncode 18,501
pro 17,626
twentysixteen 17,602
sydney 16,502
storefront 16,314
Total 14,390
hello-theme-child-master 14,021
factory-templates-4 13,731
themify-ultra 12,948
extendable 12,765
hestia 12,582
yootheme 12,515
yith-wonder 12,108
porto 11,949
twentyfifteen 11,874