WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
1813 | <?php |
1814 | } |
1815 | ?> |
1816 | <div id="quicktags"><?php |
1817 | wp_print_scripts( 'quicktags' ); ?> |
1818 | <script type="text/javascript">edToolbar()</script> |
1819 | </div> |
1820 |
|
1821 | <?php |
1822 | $the_editor = apply_filters('the_editor', "<div id='editorcontainer'><textarea rows='$rows'$class cols='40' name='$id' tabindex='$tab_index' id='$id'>%s</textarea></div>\n"); |
1823 | $the_editor_content = apply_filters('the_editor_content', $content); |
1824 |
|
1825 | printf($the_editor, $the_editor_content); |
1826 |
|
1827 | ?> |
1828 | <script type="text/javascript"> |
1829 | edCanvas = document.getElementById('<?php echo $id; ?>'); |
1830 | </script> |
1831 | <?php |