本文整理汇总了PHP中the_quicktags函数的典型用法代码示例。如果您正苦于以下问题:PHP the_quicktags函数的具体用法?PHP the_quicktags怎么用?PHP the_quicktags使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了the_quicktags函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _e
<div id="poststuff">
<fieldset id="titlediv">
<legend><a href="http://wordpress.org/docs/reference/post/#title" title="<?php _e('Help on titles') ?>"><?php _e('Title') ?></a></legend>
<div><input type="text" name="post_title" size="30" tabindex="1" value="<?php echo $post->post_title; ?>" id="title" /></div>
</fieldset>
<fieldset id="categorydiv">
<legend><a href="http://wordpress.org/docs/reference/post/#category" title="<?php _e('Help on categories') ?>"><?php _e('Categories') ?></a></legend>
<div><?php dropdown_categories($post->post_category); ?></div>
</fieldset>
<br />
<fieldset id="postdiv">
<legend><a href="http://wordpress.org/docs/reference/post/#post" title="<?php _e('Help with post field') ?>"><?php _e('Post') ?></a></legend>
<?php the_quicktags(); ?>
<?php
$rows = get_option('default_post_edit_rows');
if (($rows < 3) || ($rows > 100)) {
$rows = 10;
}
?>
<div><textarea rows="<?php echo $rows; ?>" cols="40" name="content" tabindex="4" id="content"><?php echo $post->post_content ?></textarea></div>
</fieldset>
<script type="text/javascript">
<!--
edCanvas = document.getElementById('content');
//-->
</script>
示例2: _e
_e('Main Page (no parent)');
?>
</option>
<?php
parent_dropdown($post_parent);
?>
</select>
</div>
</fieldset>
<fieldset id="postdiv">
<legend><?php
_e('Page Content');
?>
</legend>
<?php
the_quicktags();
$rows = get_settings('default_post_edit_rows');
if ($rows < 3 || $rows > 100) {
$rows = 10;
}
?>
<div><textarea rows="<?php
echo $rows;
?>
" cols="40" name="content" tabindex="4" id="content"><?php
echo $content;
?>
</textarea></div>
</fieldset>