示例#1
0
文件: tags.php 项目: ecerta/webcomic
 /**
  * Is a compatible version of Webcomic installed?
  * 
  * <code class="php">
  * if ( webcomic() ) {
  * 	// the current theme is compatible with this version of Webcomic
  * }
  * 
  * if ( webcomic( 5 ) ) {
  * 	// Webcomic 5 (or greater) is installed
  * }
  * </code>
  * 
  * @package Webcomic
  * @param string $version Minimum version to check for. Defaults to the active themes version.
  * @return boolean
  * @uses WebcomicTag::webcomic()
  */
 function webcomic($version = '')
 {
     return WebcomicTag::webcomic($version);
 }