PluginProbe
Page & Post Notes / 1.3.2
Page & Post Notes v1.3.2
trunk 1.0.0 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5
page-post-notes / include / functions.php

functions.php in Page & Post Notes 1.3.2, at include/functions.php

16 lines 572 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?>
2 <?php
3
4 // ==================================================================
5 // output the values into the the page or input in the correct way
6 // allowing to have double and single quotes inside input
7 // ==================================================================
8
9 function yydev_notes_html_output($output_code) {
10
11 $output_code = stripslashes_deep($output_code);
12 $output_code = esc_html($output_code);
13 return $output_code;
14
15 } // function yydev_notes_html_output($output_code) {
16