Make WordPress Core


Ignore:
Timestamp:
07/23/2015 05:14:09 AM (11 years ago)
Author:
pento
Message:

Shortcodes: Improve the reliablity of shortcodes inside HTML tags.

Merge of [33359] to the 3.7 branch.

Props miqrogroove.

See #15694.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.7/src/wp-includes/class-wp-embed.php

    r25868 r33389  
    5858
    5959                // Do the shortcode (only the [embed] one is registered)
    60                 $content = do_shortcode( $content );
     60                $content = do_shortcode( $content, true );
    6161
    6262                // Put the original shortcodes back
     
    281281         */
    282282        function autoembed( $content ) {
     283                // Strip newlines from all elements.
     284                $content = wp_replace_in_html_tags( $content, array( "\n" => " " ) );
     285
     286                // Find URLs that are on their own line.
    283287                return preg_replace_callback( '|^\s*(https?://[^\s"]+)\s*$|im', array( $this, 'autoembed_callback' ), $content );
    284288        }
Note: See TracChangeset for help on using the changeset viewer.