Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: insert_with_markers_inline_instructions

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
148
149      /**
150       * Filters the inline instructions inserted before the dynamically generated content.
151       *
152       * @since 5.3.0
153       *
154       * @param string[] $instructions Array of lines with inline instructions.
155       * @param string   $marker       The marker being inserted.
156       */
157      $instructions = apply_filters( 'insert_with_markers_inline_instructions', $instructions, $marker );
158
159      if ( $switched_locale ) {
160           restore_previous_locale();
161      }
162
163      $insertion = array_merge( $instructions, $insertion );
164
165      $start_marker = "# BEGIN {$marker}";
166      $end_marker   = "# END {$marker}";