示例#1
0
文件: tags.php 项目: ecerta/webcomic
 /**
  * Render hidden transcript form fields.
  * 
  * <code class="php">
  * // render hidden transcript form fields
  * webcomic_transcript_fields();
  * 
  * // render hidden transcript form fields to update the transcript with an ID of 42
  * webcomic_transcript_fields( 42 );
  * </code>
  * 
  * @package Webcomic
  * @param mixed $transcript The post object or ID to update on submission.
  * @param mixed $the_post The post object or ID to submit a transcript for.
  * @uses WebcomicTag::webcomic_transcript_fields()
  */
 function webcomic_transcript_fields($transcript = false, $the_post = false)
 {
     echo WebcomicTag::webcomic_transcript_fields($transcript, $the_post);
 }