show_comic_for_date(date,thumbnail) — show a particular date's comics
This tag is virtually identical to show_comic, except that instead of showing the comic for the post that is currently being viewed, it shows a comic from a date you specify.
This is the only template tag that has any mandatory arguments. The date argument must be supplied, and can be in any valid PHP date format (see Appendix B, PHP Date Codes).
Example A.12. Basic Usage
<?php show_comic_for_date('2009-02-13') ?>
This would produce the following output:
<img height="285px" width="794px" src="http://www.example.com/wp-content/stripshow_comics/20090213.png" alt="Comic for February 13, 2009" title="Comic for February 13, 2009" />
| argument | type | default | description |
|---|---|---|---|
date
|
string | none | A date in PHP date format |
thumbnail
|
boolean | FALSE | Scale the comic down (to the size specified in stripShow Options) for display |