wp_tiny_mce [ WordPress Function ]
wp_tiny_mce ( $teeny = false, $settings = false )
| See: | |
| Defined at: |
|
No description yet.
Source
<?php
function wp_tiny_mce( $teeny = false, $settings = false ) {
_deprecated_function( __FUNCTION__, '3.3', 'wp_editor()' );
static $num = 1;
if ( ! class_exists('_WP_Editors' ) )
require_once( ABSPATH . WPINC . '/class-wp-editor.php' );
$editor_id = 'content' . $num++;
$set = array(
'teeny' => $teeny,
'tinymce' => $settings ? $settings : true,
'quicktags' => false
);
$set = _WP_Editors::parse_settings($editor_id, $set);
_WP_Editors::editor_settings($editor_id, $set);
}
?>
Examples [ wp-snippets.com ]
Top Google zoekresultaten
- WordPress › Support » WordPress 3.3 breaks wp_tiny_mce(()
I updated to 3.3 now this no longer works. I can resize the window and whatever but there is no tool bar anymore. It was working before I updated. wp_tiny_mce( ...
wordpress.org - WordPress › Support » How I can use TinyMCE for my own plugin
I've had nothing but issues trying to use the built-in TinyMCE editor with the_editor or wp_tiny_mce when needing multiple editors on one page. The best results ...
wordpress.org - wp_tiny_mce | A HitchHackers guide through WordPress
Feb 12, 2011 ... function wp_tiny_mce( $teeny = false, $settings = false ) { global $ concatenate_scripts, $compress_scripts, $tinymce_version, $editor_styles; ...
hitchhackerguide.com - Using the TinyMCE WYSIWYG editor in your WordPress plugin ...
wp_tiny_mce( false, array( 'editor_selector' => 'wysiwyig_editor' ) ); ... May be it's because I'm using the german version of wordpress but using wp_tiny_mce ...
dannyvankooten.com