Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: the_editor_content

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
222                'id="' . $editor_id . '">%s</textarea></div>' );
223
224           /**
225            * Filter the default editor content.
226            *
227            * @since 2.1.0
228            *
229            * @param string $content Default editor content.
230            */
231           $content = apply_filters( 'the_editor_content', $content );
232
233           printf( $the_editor, $content );
234           echo "\n</div>\n\n";
235
236           self::editor_settings($editor_id, $set);
237      }
238
239      public static function editor_settings($editor_id, $set) {
240           $first_run = false;