开发者 | gserafini |
---|---|
更新时间 | 2024年10月31日 15:51 |
捐献地址: | 去捐款 |
PHP版本: | 2.7 及以上 |
WordPress版本: | 6.7 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
[display_during end_day_time="June 27, 2018 10:00 am" message="Sorry, this content no longer available."]CONTENT_TO_DISPLAY[/display_during]
into any post or page to conditionally display whatever is inside of the shortcode. The message
parameter you specify will display if the start and end time parameters are not currently valid.
All shortcode parameters:
[display_during start_day_time="Sun 8:00 am" end_day_time="Mon 8:00 pm" timezone_location="America/Denver" message="Sorry, this content is not currently available."]CONTENT_TO_DISPLAY[/display_during]
start_day_time
- OPTIONAL - What day/time or time of day should the contents start being displayed?end_day_time
- REQUIRED - What day/time or time of day should the content of the shortcode stop being displayed?timezone_location
- OPTIONAL - The timezone uses by default whatever is set for the site in Settings > General. You can use this optional parameter to specify a different timezone location. Uses the standard PHP timezones[display_during end_day_time="June 27, 2018 10:00 am" message="Sorry, this content no longer available."]CONTENT_TO_DISPLAY[/display_during]
shortcode and insert the content you want to display where CONTENT_TO_DISPLAY is and put the message to display if the time isn't valid in the message parameter.It’s easy to display content based on a recurring time.
Example: display content every day at a set time, from 9:00 AM to 5:00 PM:
[display_during start_day_time=“Today 9:00 am" end_day_time=“Today 5:00 pm" message=""]CONTENT_TO_DISPLAY[/display_during]
Example: Display content during a 24 hour period each week, starting Sunday night and ending Monday night:
[display_during start_day_time=“Sun 8:00 am" end_day_time=“Mon 8:00 am" message=""]CONTENT_TO_DISPLAY[/display_during]
The plugin uses PHP's strtotime() function to decipher start and end times. You can specify either a specific start and end date (i.e. June 27, 2018 10:00 am) or you can also specify a start and end time as days of the week (i.e. start_day_time="Sun 8:00 am" and end_day_time="Mon 8:00 pm". This second method will display content starting Sunday at 8:00 am and stop displaying it the day after (Monday) at 8:00 pm. You can also use Today in place of a day if that makes sense for your application.
Only end_day_time
is required. If start_day_time
is omitted, now is used for the start_day_time
, and end_day_time
will determine when to stop displaying the content.
Yes. Both are supported, although if you're entering HTML / CSS as the content, you may want to edit the page using Text mode.
Yes, use the contact form on the ShareThePractice.org website.