PluginProbe
Flamingo / trunk
Flamingo vtrunk
2.6.4 2.6.3 2.6.2 trunk 1.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.1 1.1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 2.0 2.1 2.1.1 2.2 All 33 releases
flamingo / includes / formatting.php

formatting.php in Flamingo trunk, at includes/formatting.php

18 lines 355 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 function flamingo_htmlize( $val ) {
4 $result = '';
5
6 if ( is_array( $val ) ) {
7 foreach ( $val as $v ) {
8 $result .= sprintf( '<li>%s</li>', flamingo_htmlize( $v ) );
9 }
10
11 $result = sprintf( '<ul>%s</ul>', $result );
12 } else {
13 $result = wpautop( esc_html( (string) $val ) );
14 }
15
16 return apply_filters( 'flamingo_htmlize', $result, $val );
17 }
18