Title: Timed Content
Author: Arno Welzel
Published: <strong>مارس 1, 2011</strong>
Last modified: دسامبر 2, 2025

---

Search plugins

![](https://ps.w.org/timed-content/assets/icon-256x256.png?rev=2953069)

# Timed Content

 By [Arno Welzel](https://profiles.wordpress.org/awelzel/)

[Download](https://downloads.wordpress.org/plugin/timed-content.2.97.zip)

 * [Details](https://azb.wordpress.org/plugins/timed-content/#description)
 * [Reviews](https://azb.wordpress.org/plugins/timed-content/#reviews)
 *  [Installation](https://azb.wordpress.org/plugins/timed-content/#installation)
 * [Development](https://azb.wordpress.org/plugins/timed-content/#developers)

 [Support](https://wordpress.org/support/plugin/timed-content/)

## Description

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]<h3>Usage</h3>
    ```

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).

## Screenshots

 * [[
 * An example showing use of the `[timed-content-client]` shortcode. The “alarm 
   clock” button on the editor menubar brings up a dialog box to help build the 
   Timed Content shortcodes.
 * [[
 * The “Add Timed Content shortcode” dialog showing the Client tab. Check the attribute
   you want to add and fill in the textboxes.
 * [[
 * The “Add Timed Content shortcode” dialog showing the Server tab. Check the attribute
   you want to add, then click on the Date and Time textboxes.
 * [[
 * The date and time pickers help you format a correct date and time. Here’s the
   jQuery UI Datepicker in action.
 * [[
 * The “Add Timed Content shortcode” dialog showing the Timed Content Rules tab.

## Installation

 1. Extract the contents of the package to the `/wp-content/plugins/timed-content` 
    directory
 2. Activate the plugin through the ‘Plugins’ menu in WordPress

## FAQ

### Projected dates/times seem to be fixed to a certain start date – why?

Since it makes no sense to get all values of the past, the projected dates/times
will not display all available dates but will limit the start date to the current
date minus a certain value depending on the interval.

For hourly intervals: start at current date minus 1 day
 For daily intervals: start
at current date minus 7 days For weekly intervals: start at current date minus 21
days For monthly intervals: start at current date minus 80 days For yearly intervals:
start at current date minus 380 days

Example: you set a rule to start on January 1, 2013 with daily repetetion. To get
all the possible dates for that rule until today and a few weeks in the future this
would mean to calculate more than ten(!) years or 3650 values until today. But most
likely you don’t want to see the dates from 10 years ago but the values how they
will be now and some repetitions into the future.

### Old rules after updating to version 2.50

In versions prior to 2.50 the date/time format was not handled very well which caused
quite some confusion. Therefore version 2.50 now uses a fixed format similar to 
ISO 8601: yyyy-mm-dd HH:MM

Existing shortcodes and rules containing dates in the format mm/dd/yyyy should still
work, but when editing rules the date value is converted to the new format.

To be sure, you should check your existing rules and shortcodes if you upgraded 
from a version below 2.50.

### Using Timed Content in Gutenberg

If you want to use Timed Content with Gutenberg you have to add a “Classic” block.
There is no way to show or hide other content blocks with Timed Content.

## Reviews

![](https://secure.gravatar.com/avatar/900788e1ccdad1ae3a5f179087e44804d4720aae17cdd98b15900f68ef6682c2?
s=60&d=retro&r=g)

### 󠀁[Gamechanger](https://wordpress.org/support/topic/gamechanger-7/)󠁿

 [pitowner](https://profiles.wordpress.org/pitowner/) سپتامبر 8, 2023

Glad I found this. Better late than never.

![](https://secure.gravatar.com/avatar/f7ff14b2d6e31d983928d2225a17de5db2de1e1f6574424459f6944c1b0fe503?
s=60&d=retro&r=g)

### 󠀁[Killed my load time](https://wordpress.org/support/topic/killed-my-load-time/)󠁿

 [anphira](https://profiles.wordpress.org/anphira/) مئی 11, 2023 1 reply

This plugin added 2.5 seconds to my website’s load time. On every page load! On 
a Fiber internet connection.

![](https://secure.gravatar.com/avatar/c3ac4f3642b66b079763273f03f2af702705a4de0e8ac03b76f870898b2e2fb7?
s=60&d=retro&r=g)

### 󠀁[Most excellent plugin!](https://wordpress.org/support/topic/most-excellent-plugin-6/)󠁿

 [mkrause01](https://profiles.wordpress.org/mkrause01/) ژانویه 31, 2023

This plugin is just terrific! It does seem to be the only plugin available to manage
content that can automatically appear or hide on any page and at a specific scheduled
date / time.Thank you VERY much for keeping this plugin alive! It’s not necessarily
something for every site but for those sites where such functionality is desired,
this plugin is, from what I can tell, the only one in existence AND it works perfectly!

![](https://secure.gravatar.com/avatar/93e8a924bd86a93a3add2c97a53930d4e7acb927b69708cf81b9d11ffdb9dc0d?
s=60&d=retro&r=g)

### 󠀁[Great plugin!](https://wordpress.org/support/topic/great-plugin-35183/)󠁿

 [C77](https://profiles.wordpress.org/c77/) سپتامبر 30, 2022 2 replies

Great plugin, thank you, works perfectly! Is it possible to make it show/hide daily?
Thank you.

![](https://secure.gravatar.com/avatar/fd1b9143988de5a7618b651757a49e7f72623a1bf5818eaa3c921140d0d19591?
s=60&d=retro&r=g)

### 󠀁[A realy nice job](https://wordpress.org/support/topic/a-realy-nice-job/)󠁿

 [d_alinus2004](https://profiles.wordpress.org/d_alinus2004/) فووریه 10, 2022

A realy nice job..! Congratulation for this work.

![](https://secure.gravatar.com/avatar/6ac5bde01637260e353753494e7320705da6d77ddb91d4419a0a8d98e9cb5ebc?
s=60&d=retro&r=g)

### 󠀁[Brilliant](https://wordpress.org/support/topic/brilliant-1484/)󠁿

 [delcour](https://profiles.wordpress.org/delcour/) ژانویه 16, 2022

Just what I needed. For a streaming radio website I wanted to show different images
accompanying the different programs. These images are in widgets and this plugin
works absolutely fine! So easy to define the times and paste the shortcode. THNX

 [ Read all 42 reviews ](https://wordpress.org/support/plugin/timed-content/reviews/)

## Contributors & Developers

“Timed Content” is open source software. The following people have contributed to
this plugin.

Contributors

 *   [ Arno Welzel ](https://profiles.wordpress.org/awelzel/)
 *   [ K. Tough ](https://profiles.wordpress.org/kjvtough/)

[Translate “Timed Content” into your language.](https://translate.wordpress.org/projects/wp-plugins/timed-content)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/timed-content/), check
out the [SVN repository](https://plugins.svn.wordpress.org/timed-content/), or subscribe
to the [development log](https://plugins.trac.wordpress.org/log/timed-content/) 
by [RSS](https://plugins.trac.wordpress.org/log/timed-content/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 2.97

 * Updated compatibility information for WordPress.

#### 2.96

 * Internal code refactoring for frequency option.
 * Fix adjustment for DST switches to keep start/end time constant.

#### 2.95

 * Updated compatibility information for WordPress.

#### 2.94

 * Fix PHP warning in rule calculation.

#### 2.93

 * Fix interval calculation for monthly rules.
 * Fix DST adjustments in calculation for certain rule combinations.

#### 2.92

 * Fixed output of incorrect time values in projected dates/times.

#### 2.91

 * Updated compatibility information for WordPress.
 * Added additional weekday ordinal “fifth”, where only the fifth ordinal of a weekday
   of a month will be used if it exists and not the last ordinal, regardless if 
   the weekday is repeated four or five times.

#### 2.90

 * Use WordPress timezone setting as default for new server side rules and when 
   server side shortcodes don’t contain a
    timezone in the date/time parameter.

#### 2.82

 * Updated compatibility information for WordPress.

#### 2.81

 * Updated compatibility information for WordPress.

#### 2.80

 * Updated compatibility information for WordPress.

#### 2.79

 * Fix backend code for admin dashboard “right now” output of timed content rule
   links.

#### 2.78

 * Fixed a JavaScript error message in the backend UI.

#### 2.77

 * Updated compatibility information for WordPress.

#### 2.76

 * Fixed a bug which caused server side “hide” rules not to work any longer.

#### 2.75

 * Fixed a bug which caused client side “hide” rules not to work any longer.

#### 2.74

 * Fixed compatibility issue with PHP 7.

#### 2.73

 * Fixed security issue with client side shortcodes which allowed to insert raw 
   HTML and JavaScript via the shortcode.
 * Refactored codebase according to WordPress Core coding guidelines.
 * Adjusted time calculation to keep time in rules independent of current DST.
 * Fixed a bug when creating new a server side rule and leaving the editor without
   saving it.

#### 2.72

 * Fixed deprecation warnings with PHP 8.1.

#### 2.71

 * Changed loading translations to support using custom translations by LOCO Translate.

#### 2.70

 * The number of calculated date/time values is limited to avoid too many values
   for very long periods.

#### 2.69

 * Updated compatibility for WordPress 6.0

#### 2.68

 * Fixed a problem with shortcodes on pages without post object.

#### 2.67

 * Refactor backend code to avoid errors in situations when there is no current 
   post but a post is expected.

#### 2.66

 * Updated compatibility information for WordPress 5.8.

#### 2.65

 * Fixed a PHP warning which could occur if no exceptions are defined in a rule.

#### 2.64

 * Fixed empty TinyMCE dialog.

#### 2.62-2.63

 * Fixed PHP 7.3 compatibility issues.

#### 2.61

 * Fixed PHP notice when using rules without exceptions.

#### 2.60

 * Fixed broken handling of rule exceptions.
 * Changed label for intervals in rule editor.

#### 2.58

 * Changed the way how debug output is generated to the old variant without HTML
   sanitizing to make it easier to understand the output (thanks to Enrico Bacis
   for this).

#### 2.57

 * Extended `debug` parameter: it’s now also possible to show debug output only 
   if content is hidden (thanks to Enrico Bacis for this).

#### 2.56

 * Use of ‘UTC’ instead of ‘+0000’ as default time zone to avoid problems with older
   PHP versions (eventhough you should better update to a supported PHP version).

#### 2.55

 * Better handling of shortcodes with invalid timezones to avoid unhandled runtime
   exceptions.
 * Improved debug output.

#### 2.54

 * Default date values for new rules will now be in the correct format and not in
   the local date format of WordPress.

#### 2.53

 * Added support for old shortcodes with localized date formats again. Every date/
   time which can be used in `strtotime()` should work now as well.
 * Improved format of debug output.

#### 2.52

 * Fixed a bug for server side shortcodes without or invalid “hide” attribute which
   did always hide the content.

#### 2.51

 * Fixed a bug where the “hide” attribute of server side shortcodes did not get 
   parsed correctly.

#### 2.50

 * Major code refactoring and cleanup – please check your existing rules and shortcodes
   if they still work as expected and change them if needed!
 * Increased minimum required WordPress version to 3.8
 * Date format for new shortcodes and rules is now always “yyyy-mm-dd HH:MM” (similar
   to ISO 8601)
 * Existing dates in rules and shortcodes will be parsed as “mm/dd/yyyy HH:MM” if
   they contain slashes
 * Time values containing “AM” or “PM” will still work but converted to 24h format
   internally

#### 2.15

 * Fixed 404 error caused by wrong URL for jquery date/time picker localization.
 * Current date/time in TinyMCE dialog will be displayed as “yyyy-mm-dd HH:MM” as
   well.

#### 2.10

 * Fixed a problem with unexpected `p` elements inside server side timed content
   sections.

#### 2.9

 * Changed default sort order of the rules in the backend to the title.

#### 2.8

 * Added debug parameter `tctest`.

#### 2.7

 * Fixed deprecated class constructors.

#### 2.6

 * New action hooks.
 * `[timed-content-rule]` shortcode now accepts a Timed Content Rule name as well
   as an ID.
 * Streamlined i18n for date/time pickers (Use values available in WordPress settings
   and `$wp_locale` when available, combined *-i18n.js files into one).
 * Some developer docs in the `readme.txt`

#### 2.5.1

 * Fixed `current_time()` bug in __rulesShowHTML() introduced in 2.5.

#### 2.5

 * Removed dependency on jQuery UI Dialog; now uses Thickbox.
 * Added and modified `fix_date_i18n()` from https://core.trac.wordpress.org/ticket/
   25768 to better handle DST and timezones with i18n.
 * Added custom filter `timed_content_filter_override` so admins can modify/replace`
   timed_content_filter` if necessary.
 * Using built-in spinner image now instead of `wpspin.gif`

#### 2.4

 * Removed `timed-content-admin-tinymce.js` (No need anymore; required JS variables
   now hooked directly into editor). Fixes incompatibility with OptimizePress.

#### 2.3.1

 * Fixed minor bugs related to Exception Dates.
 * Optimized rule periods arrays (array only needs ‘status’ and ‘time’ when it’s
   meant to be human-readable).
 * Added custom filter `timed_content_filter` to emulate `apply_filter( 'the_content',...)`
   functionality for content.

#### 2.3

 * Fixed bug when setting up weekly recurrence for Timed Content Rules.
 * NEW! Exception Dates (dates on which your Timed Content Rule shouldn’t run).

#### 2.2

 * Much improved i18n
 * New Spanish translation – Many thanks to Andrew Kurtis and Jelena Kovacevic from
   WebHostingHub (Nueva traducción de español – Muchas gracias a Andrew Kurtis y
   Jelena Kovacevic desde WebHostingHub).

#### 2.1.5

 * Unified dashicons among all of my plugins.
 * Minor improvements in TinyMCE dialog UI and Date/Time UI controls.

#### 2.1.4

 * Fixed TinyMCE editor button for TinyMCE 4.x.

#### 2.1.3

 * Removed support for PHP4 in `customFieldsInterface.php`.
 * Fixed WordPress version check for deciding which image to use for TinyMCE button.
 * Fixed “Strict Standards” warning in PHP 5.4 in `__getNextWeek()`.

#### 2.1.2

 * Dashicons support for WP 3.8 + added. Support for old-style icons in Admin/TinyMCE
   is deprecated.
 * Added versioning to all `wp_enqueue_style()` calls.

#### 2.1.1

 * CSS for JQuery UI now loaded locally as required by WordPress plugin repository
   rules.
 * Improved UX on TinyMCE dialog and Timed Content Rules detail page.

#### 2.1

 * Fixed inconsistency in how the days of week to repeat on were being set up between
   the front and back ends.
 * Fixed variable scope bug that occurred on activation.
 * Improved i18n.

#### 2.0

 * Added Timed Content Rules.
 * Replaced AnyTime plugin with jQuery UI Timepicker (http://fgelinas.com/code/timepicker)
   and WordPress’s internal jQuery UI Datepicker.
 * HTML code created by `[timed-content-client]` can now either be enclosed in either`
   <div>` or `<span>` tags.
 * Debugging statements for `[timed-content-server]` now displayed on Post/Page (
   only if logged in and have the rights to edit that Post/Page – no more digging
   into the HTML source).
 * Improved code documentation.

#### 1.2

 * Upgraded AnyTime jQuery plugin.
 * `timed-content.js` is now always loaded (Size > 1KB, so not a lot of extra overhead);
   fixes bug when multiple/nested shortcodes are used.

#### 1.1

 * Fixed some internal filename discrepancies.

#### 1.0

 * Initial release.

## Meta

 *  Version **2.97**
 *  Last updated **4 آی‌لار ago**
 *  Active installations **6٫000+**
 *  WordPress version ** 3.8 or higher **
 *  Tested up to **6.9.4**
 *  Language
 * [English (US)](https://wordpress.org/plugins/timed-content/)
 * Tags
 * [marketing tool](https://azb.wordpress.org/plugins/tags/marketing-tool/)[schedule](https://azb.wordpress.org/plugins/tags/schedule/)
   [timed content](https://azb.wordpress.org/plugins/tags/timed-content/)
 *  [Advanced View](https://azb.wordpress.org/plugins/timed-content/advanced/)

## Ratings

 4.6 out of 5 stars.

 *  [  34 5-star reviews     ](https://wordpress.org/support/plugin/timed-content/reviews/?filter=5)
 *  [  2 4-star reviews     ](https://wordpress.org/support/plugin/timed-content/reviews/?filter=4)
 *  [  1 3-star review     ](https://wordpress.org/support/plugin/timed-content/reviews/?filter=3)
 *  [  2 2-star reviews     ](https://wordpress.org/support/plugin/timed-content/reviews/?filter=2)
 *  [  2 1-star reviews     ](https://wordpress.org/support/plugin/timed-content/reviews/?filter=1)

[Add my review](https://wordpress.org/support/plugin/timed-content/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/timed-content/reviews/)

## Contributors

 *   [ Arno Welzel ](https://profiles.wordpress.org/awelzel/)
 *   [ K. Tough ](https://profiles.wordpress.org/kjvtough/)

## Support

Issues resolved in last two months:

     0 out of 1

 [View support forum](https://wordpress.org/support/plugin/timed-content/)