PluginProbe
Insert Html Snippet / 1.1
Insert Html Snippet v1.1
1.4.6 trunk 1.0 1.0.1 1.1 1.1.1 1.2 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.3 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.4 1.4.1 1.4.2 1.4.3 All 27 releases
insert-html-snippet / direct_call.php

direct_call.php in Insert Html Snippet 1.1, at direct_call.php

18 lines 446 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 function xyz_ihs_plugin_query_vars($vars) {
3 $vars[] = 'wp_ihs';
4 return $vars;
5 }
6 add_filter('query_vars', 'xyz_ihs_plugin_query_vars');
7
8
9 function xyz_ihs_plugin_parse_request($wp) {
10 /*confirmation*/
11 if (array_key_exists('wp_ihs', $wp->query_vars) && $wp->query_vars['wp_ihs'] == 'editor_plugin_js') {
12 require( dirname( __FILE__ ) . '/editor_plugin.js.php' );
13 die;
14 }
15
16 }
17 add_action('parse_request', 'xyz_ihs_plugin_parse_request');
18