Here is a simple shortcode that can be put in the functions.php file from the active WordPress theme. In the shortcode arguments you can specify starting time, ending time, title and title tag as well as the background colour and padding values for the div element that envelopes the announcment content.
Of course you are free to modify anything as needed.
function timed_announcement_shortcode($args = array(), $content = '') { extract(shortcode_atts( array( 'until' => 'tomorrow', 'from' => 'yesterday', 'title' => __('Announcement','your_theme_textdomain'), 'titletag' => 'h3', 'background' => 'lightyellow', 'padding' => '20px', ), $args )); if ( strtotime($from) < time() && strtotime($until) > time()) { return '< ' . $titletag . '>' . $title . ''; } return ''; } add_shortcode('announcement', 'timed_announcement_shortcode');' . $content . '
Usage examples (remove the * character for the shortcode to work):
[*announcement]This is some announcement with a H3 title as "Announcement" or its translation in another language[/announcement]
Result:
Announcement
This is some announcement with a H3 title as “Announcement” or its translation in another language
[*announcement background="#ddd"]This is some announcement with a H3 title as "Announcement" or its translation in another language and with light gray background[/announcement]
Result:
Announcement
This is some announcement with a H3 title as “Announcement” or its translation in another language and with light gray background
[*announcement padding="10px"]This is some announcement with a H3 title as "Announcement" or its translation in another language and with only 10px padding instead of the default 20px[/announcement]
Result:
Announcement
This is some announcement with a H3 title as “Announcement” or its translation in another language and with only 10px padding instead of the default 20px
[*announcement until="2011-08-01"]This is some announcement with a H3 title as "Announcement" or its translation in another language that will expire August 1st, 2011[/announcement]
Result:
[*announcement from="2011-07-31" until="2011-08-01"]This is some announcement with a H3 title as "Announcement" or its translation in another language that will appear July 31st, 2011 and will expire August 1st, 2011[/announcement]
Result:
[*announcement title="Some Title"]This is some announcement with a H3 title as "Some Title" instead of the default title[/announcement]
Result:
Some Title
This is some announcement with a H3 title as “Some Title” instead of the default title
[*announcement titletag="h6"]This is some announcement with a H6 title as "Announcement" or its translation in another language[/announcement]
Result:
Announcement
This is some announcement with a H6 title as “Announcement” or its translation in another language
Of course all shortcode arguments could be used together.
Enjoy!
1 comment
Comments feed for this article