本文整理汇总了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>
开发者ID:staylor,项目名称:develop.svn.wordpress.org,代码行数:30,代码来源:edit-form.php
示例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>
开发者ID:staylor,项目名称:develop.svn.wordpress.org,代码行数:29,代码来源:edit-page-form.php
注:本文中的the_quicktags函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论