]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/kses.php
WordPress 4.5
[autoinstalls/wordpress.git] / wp-includes / kses.php
index 4827b0de2c88971ba93425f075e9fded06f5de44..b16a128e22837ebad28cab82da24aa4337374be1 100644 (file)
@@ -398,6 +398,7 @@ if ( ! CUSTOM_TAGS ) {
                'ol' => array(
                        'start' => true,
                        'type' => true,
+                       'reversed' => true,
                ),
                'var' => array(),
                'video' => array(
@@ -1586,8 +1587,10 @@ function wp_kses_post( $data ) {
  *
  * @since 4.4.2
  *
- * @param mixed $value The array or string to filter.
- * @return mixed $value The filtered content.
+ * @see map_deep()
+ *
+ * @param mixed $data The array, object, or scalar value to inspect.
+ * @return mixed The filtered content.
  */
 function wp_kses_post_deep( $data ) {
        return map_deep( $data, 'wp_kses_post' );
@@ -1683,6 +1686,10 @@ function kses_init() {
  * Inline CSS filter
  *
  * @since 2.8.1
+ *
+ * @param string $css        A string of CSS rules.
+ * @param string $deprecated Not used.
+ * @return string            Filtered string of CSS rules.
  */
 function safecss_filter_attr( $css, $deprecated = '' ) {
        if ( !empty( $deprecated ) )