Make WordPress Core

Ticket #23572: 23572-html.6.diff

File 23572-html.6.diff, 20.8 KB (added by wonderboymusic, 11 years ago)
  • wp-includes/default-filters.php

    diff --git wp-includes/default-filters.php wp-includes/default-filters.php
    index c24e68d..5397c92 100644
    foreach ( array( 'comment_author', 'term_name', 'link_name', 'link_description', 
    100100}
    101101
    102102// Format WordPress
    103 foreach ( array( 'the_content', 'the_title' ) as $filter )
     103foreach ( array( 'the_content', 'the_extra_content', 'the_title' ) as $filter )
    104104        add_filter( $filter, 'capital_P_dangit', 11 );
    105105add_filter( 'comment_text', 'capital_P_dangit', 31 );
    106106
    add_filter( 'the_content', 'wpautop' ); 
    140140add_filter( 'the_content', 'shortcode_unautop'      );
    141141add_filter( 'the_content', 'prepend_attachment'     );
    142142
     143add_filter( 'the_extra_content', 'wptexturize'       );
     144add_filter( 'the_extra_content', 'convert_smilies'   );
     145add_filter( 'the_extra_content', 'convert_chars'     );
     146add_filter( 'the_extra_content', 'wpautop'           );
     147add_filter( 'the_extra_content', 'shortcode_unautop' );
     148add_filter( 'the_extra_content', 'prepend_attachment');
     149
    143150add_filter( 'the_excerpt',     'wptexturize'      );
    144151add_filter( 'the_excerpt',     'convert_smilies'  );
    145152add_filter( 'the_excerpt',     'convert_chars'    );
  • wp-includes/media.php

    diff --git wp-includes/media.php wp-includes/media.php
    index 60677ba..e38c3bf 100644
    function wp_audio_shortcode( $attr ) { 
    887887        }
    888888
    889889        $library = apply_filters( 'wp_audio_shortcode_library', 'mediaelement' );
    890         if ( 'mediaelement' === $library ) {
     890        if ( 'mediaelement' === $library && did_action( 'init' ) ) {
    891891                wp_enqueue_style( 'wp-mediaelement' );
    892892                wp_enqueue_script( 'wp-mediaelement' );
    893893        }
    function wp_video_shortcode( $attr ) { 
    994994        }
    995995
    996996        $library = apply_filters( 'wp_video_shortcode_library', 'mediaelement' );
    997         if ( 'mediaelement' === $library ) {
     997        if ( 'mediaelement' === $library && did_action( 'init' ) ) {
    998998                wp_enqueue_style( 'wp-mediaelement' );
    999999                wp_enqueue_script( 'wp-mediaelement' );
    10001000        }
    function get_attached_video( $post_id = 0 ) { 
    18281828}
    18291829
    18301830/**
    1831  * Extract the srcs from the post's [{media type}] <source>s
     1831 * Extract and parse {media type} shortcodes or srcs from the passed content
    18321832 *
    18331833 * @since 3.6.0
    18341834 *
     1835 * @param string $type Type of media: audio or video
    18351836 * @param string $content A string which might contain media data.
     1837 * @param boolean $html Whether to return HTML or URLs
    18361838 * @param boolean $remove Whether to remove the found URL from the passed content.
    1837  * @return array A list of lists. Each item has a list of sources corresponding
    1838  *              to a [{media type}]'s primary src and specified fallbacks
     1839 * @return array A list of parsed shortcodes or extracted srcs
    18391840 */
    1840 function get_content_media( $type, &$content, $remove = false ) {
    1841         $src = '';
     1841function get_content_media( $type, &$content, $html = true, $remove = false ) {
    18421842        $items = array();
    18431843        $matches = array();
    18441844
    18451845        if ( preg_match_all( '/' . get_shortcode_regex() . '/s', $content, $matches, PREG_SET_ORDER ) && ! empty( $matches ) ) {
    18461846                foreach ( $matches as $shortcode ) {
    18471847                        if ( $type === $shortcode[2] ) {
    1848                                 $srcs = array();
    18491848                                $count = 1;
    18501849                                if ( $remove )
    1851                                         $content = str_replace( $shortcode[0], '', $content, $count );
    1852 
    1853                                 $item = do_shortcode_tag( $shortcode );
    1854                                 preg_match_all( '#src=[\'"](.+?)[\'"]#is', $item, $src, PREG_SET_ORDER );
    1855                                 if ( ! empty( $src ) ) {
    1856                                         foreach ( $src as $s )
    1857                                                 $srcs[] = $s[1];
     1850                                        $content =& str_replace( $shortcode[0], '', $content, $count );
    18581851
    1859                                         $items[] = array_values( array_unique( $srcs ) );
    1860                                 }
     1852                                $items[] = do_shortcode_tag( $shortcode );
    18611853                        }
    18621854                }
    18631855        }
    1864         return $items;
     1856
     1857        if ( $html )
     1858                return $items;
     1859
     1860        $src = '';
     1861        $data = array();
     1862
     1863        foreach ( $items as $item ) {
     1864                preg_match_all( '#src=[\'"](.+?)[\'"]#is', $item, $src, PREG_SET_ORDER );
     1865                if ( ! empty( $src ) ) {
     1866                        $srcs = array();
     1867                        foreach ( $src as $s )
     1868                                $srcs[] = $s[1];
     1869
     1870                        $data[] = array_values( array_unique( $srcs ) );
     1871                }
     1872        }
     1873
     1874        return $data;
    18651875}
    18661876
    18671877/**
    function get_content_media( $type, &$content, $remove = false ) { 
    18701880 *
    18711881 * @since 3.6.0
    18721882 *
     1883 * @param string $type Type of media: audio or video
    18731884 * @param string $content A string which might contain media data.
    18741885 * @param boolean $remove Whether to remove the found URL from the passed content.
     1886 * @param int $limit Optional. The number of galleries to return
    18751887 * @return array A list of found HTML media embeds and possibly a URL by itself
    18761888 */
    1877 function get_embedded_media( $type, &$content, $remove = false ) {
     1889function get_embedded_media( $type, &$content, $remove = false, $limit = 0 ) {
    18781890        $html = array();
    18791891        $matches = '';
    18801892
    function get_embedded_media( $type, &$content, $remove = false ) { 
    18841896                        if ( $remove )
    18851897                                $content = str_replace( $matches[0], '', $content );
    18861898
    1887                         return $html;
     1899                        if ( $limit > 0 && count( $html ) >= $limit )
     1900                                break;
    18881901                }
    18891902        }
    18901903
     1904        if ( ! empty( $html ) && count( $html ) >= $limit )
     1905                return $html;
     1906
    18911907        $lines = explode( "\n", trim( $content ) );
    18921908        $line = trim( array_shift( $lines  ) );
    18931909
    function get_embedded_media( $type, &$content, $remove = false ) { 
    19011917}
    19021918
    19031919/**
    1904  * Extract the srcs from the post's [audio] <source>s
     1920 * Extract the HTML or <source> srcs from the content's [audio]
    19051921 *
    19061922 * @since 3.6.0
    19071923 *
    19081924 * @param string $content A string which might contain audio data.
     1925 * @param boolean $html Whether to return HTML or URLs
    19091926 * @param boolean $remove Whether to remove the found URL from the passed content.
    1910  * @return array A list of lists. Each item has a list of sources corresponding
    1911  *              to a [audio]'s primary src and specified fallbacks
     1927 * @return array A list of lists. Each item has a list of HTML or srcs corresponding
     1928 *              to an [audio]'s HTML or primary src and specified fallbacks
    19121929 */
    1913 function get_content_audio( &$content, $remove = false ) {
    1914         return get_content_media( 'audio', $content, $remove );
     1930function get_content_audio( &$content, $html = true, $remove = false ) {
     1931        return get_content_media( 'audio', $content, $html, $remove );
    19151932}
    19161933
    19171934/**
    function get_embedded_audio( &$content, $remove = false ) { 
    19291946}
    19301947
    19311948/**
    1932  * Extract the srcs from the post's [video] <source>s
     1949 * Extract the HTML or <source> srcs from the content's [video]
    19331950 *
    19341951 * @since 3.6.0
    19351952 *
    19361953 * @param string $content A string which might contain video data.
     1954 * @param boolean $html Whether to return HTML or URLs
    19371955 * @param boolean $remove Whether to remove the found URL from the passed content.
    1938  * @return array A list of lists. Each item has a list of sources corresponding
    1939  *              to a [video]'s primary src and specified fallbacks
     1956 * @return array A list of lists. Each item has a list of HTML or srcs corresponding
     1957 *              to a [video]'s HTML or primary src and specified fallbacks
    19401958 */
    1941 function get_content_video( &$content, $remove = false ) {
    1942         return get_content_media( 'video', $content, $remove );
     1959function get_content_video( &$content, $html = true, $remove = false ) {
     1960        return get_content_media( 'video', $content, $html, $remove );
    19431961}
    19441962
    19451963/**
    function wp_video_embed( $matches, $attr, $url, $rawattr ) { 
    20012019wp_embed_register_handler( 'wp_video_embed', '#https?://.+?\.(' . join( '|', wp_get_video_extensions() ) . ')#i', apply_filters( 'wp_video_embed_handler', 'wp_video_embed' ), 9999 );
    20022020
    20032021/**
     2022 * Return suitable HTML code for output based on the content related to the global $post
     2023 * If found, remove the content from the @global $post's post_content field
     2024 *
     2025 * @since 3.6.0
     2026 *
     2027 * @param string $type Required. 'audio' or 'video'
     2028 * @param WP_Post $post Optional. Used instead of global $post when passed.
     2029 * @return string
     2030 */
     2031function get_the_media( $type, &$post = null ) {
     2032        if ( empty( $post ) )
     2033                $post = get_post();
     2034
     2035        if ( empty( $post ) )
     2036                return '';
     2037
     2038        if ( isset( $post->format_content ) )
     2039                return $post->format_content;
     2040
     2041        $count = 1;
     2042
     2043        if ( has_post_format( $type ) ) {
     2044                $meta = get_post_format_meta( $post->ID );
     2045                if ( ! empty( $meta['media'] ) ) {
     2046                        if ( is_numeric( $meta['media'] ) ) {
     2047                                $url = wp_get_attachment_url( $meta['media'] );
     2048                                $shortcode = sprintf( '[%s src="%s"]', $type, $url );
     2049                        } elseif ( preg_match( '/' . get_shortcode_regex() . '/s', $meta['media'] ) ) {
     2050                                $shortcode = $meta['media'];
     2051                        } elseif ( preg_match( '#<[^>]+>#', $meta['media'] ) ) {
     2052                                $post->format_content = $meta['media'];
     2053                                return $post->format_content;
     2054                        } elseif ( 0 === strpos( $meta['media'], 'http' ) ) {
     2055                                $post->split_content = str_replace( $meta['media'], '', $post->post_content, $count );
     2056                                $shortcode = sprintf( '[%s src="%s"]', $type, $meta['media'] );
     2057                        }
     2058
     2059                        if ( ! empty( $shortcode ) ) {
     2060                                $post->format_content = do_shortcode( $shortcode );
     2061                                return $post->format_content;
     2062                        }
     2063                }
     2064        }
     2065
     2066        $medias = call_user_func( 'get_attached_' . $type );
     2067        if ( ! empty( $medias ) ) {
     2068                $media = reset( $medias );
     2069                $url = wp_get_attachment_url( $media->ID );
     2070                $shortcode = sprintf( '[%s src="%s"]', $type, $url );
     2071                $post->format_content = do_shortcode( $shortcode );
     2072                return $post->format_content;
     2073        }
     2074
     2075        // these functions expected a reference, not a value
     2076        $content =& $post->post_content;
     2077
     2078        $htmls = get_content_media( $type, $content, true, true );
     2079        if ( ! empty( $htmls ) ) {
     2080                $html = reset( $htmls );
     2081                $post->split_content = $content;
     2082                $post->format_content = $html;
     2083                return $post->format_content;
     2084        }
     2085
     2086        $embeds = get_embedded_media( $type, $content, true, 1 );
     2087        if ( ! empty( $embeds ) ) {
     2088                $embed = reset( $embeds );
     2089                $post->split_content = $content;
     2090                if ( 0 === strpos( $embed, 'http' ) ) {
     2091                        $shortcode = sprintf( '[%s src="%s"]', $type, $embed );
     2092                        $post->format_content = do_shortcode( $shortcode );
     2093                        return $post->format_content;
     2094                } else {
     2095                        $post->format_content = $embed;
     2096                        return $post->format_content;
     2097                }
     2098        }
     2099
     2100        return '';
     2101}
     2102
     2103/**
     2104 * Output the first video in the current (@global) post's content
     2105 *
     2106 * @since 3.6.0
     2107 *
     2108 */
     2109function the_video() {
     2110        echo get_the_media( 'video' );
     2111}
     2112/**
     2113 * Output the first audio  in the current (@global) post's content
     2114 *
     2115 * @since 3.6.0
     2116 *
     2117 */
     2118function the_audio() {
     2119        echo get_the_media( 'audio' );
     2120}
     2121
     2122/**
    20042123 * Retrieve images attached to the passed post
    20052124 *
    20062125 * @since 3.6.0
    function get_attached_image_srcs( $post_id = 0 ) { 
    20332152}
    20342153
    20352154/**
    2036  * Check the content blob for image srcs
     2155 * Check the content blob for images or image srcs
    20372156 *
    20382157 * @since 3.6.0
    20392158 *
    20402159 * @param string $content A string which might contain image data.
     2160 * @param boolean $html Whether to return HTML or URLs
    20412161 * @param boolean $remove Whether to remove the found data from the passed content.
    20422162 * @param int $limit Optional. The number of image srcs to return
    2043  * @return array The found image srcs
     2163 * @return array The found images or srcs
    20442164 */
    2045 function get_content_images( &$content, $remove = false, $limit = 0 ) {
    2046         $src = '';
    2047         $srcs = array();
     2165function get_content_images( &$content, $html = true, $remove = false, $limit = 0 ) {
    20482166        $matches = array();
     2167        $tags = array();
     2168        $captions = array();
    20492169
    20502170        if ( $remove && preg_match_all( '/' . get_shortcode_regex() . '/s', $content, $matches, PREG_SET_ORDER ) && ! empty( $matches ) ) {
    2051                 $captions = array();
    20522171                foreach ( $matches as $shortcode ) {
    20532172                        if ( 'caption' === $shortcode[2] )
    20542173                                $captions[] = $shortcode[0];
    function get_content_images( &$content, $remove = false, $limit = 0 ) { 
    20682187                                $content = str_replace( $tag[0], '', $content, $count );
    20692188                        }
    20702189
    2071                         preg_match( '#src=[\'"](.+?)[\'"]#is', $tag[0], $src );
    2072                         if ( ! empty( $src[1] ) ) {
    2073                                 $srcs[] = $src[1];
    2074                                 if ( $limit > 0 && count( $srcs ) >= $limit )
    2075                                         break;
    2076                         }
     2190                        $tags[] = $tag[0];
     2191
     2192                        if ( $limit > 0 && count( $tags ) >= $limit )
     2193                                break;
     2194                }
     2195        }
     2196
     2197        if ( $html )
     2198                return $tags;
     2199
     2200        $src = '';
     2201        $srcs = array();
     2202
     2203        foreach ( $tags as $tag ) {
     2204                preg_match( '#src=[\'"](.+?)[\'"]#is', $tag, $src );
     2205                if ( ! empty( $src[1] ) ) {
     2206                        $srcs[] = $src[1];
     2207                        if ( $limit > 0 && count( $srcs ) >= $limit )
     2208                                break;
    20772209                }
    20782210        }
    20792211
    function get_content_images( &$content, $remove = false, $limit = 0 ) { 
    20812213}
    20822214
    20832215/**
    2084  * Check the content blob for image srcs and return the first
     2216 * Check the content blob for images or srcs and return the first
    20852217 *
    20862218 * @since 3.6.0
    20872219 *
    20882220 * @param string $content A string which might contain image data.
     2221 * @param boolean $html Whether to return HTML or URLs
    20892222 * @param boolean $remove Whether to remove the found data from the passed content.
    20902223 * @return string The found data
    20912224 */
    2092 function get_content_image( &$content, $remove = false ) {
    2093         $srcs = get_content_images( $content, $remove, 1 );
     2225function get_content_image( &$content, $html = true, $remove = false ) {
     2226        $srcs = get_content_images( $content, $html, $remove, 1 );
    20942227        if ( empty( $srcs ) )
    20952228                return '';
    20962229
    function get_post_gallery_images( $post_id = 0 ) { 
    22052338                return array();
    22062339
    22072340        return $gallery['src'];
     2341}
     2342
     2343/**
     2344 * Return the first image in the current (@global) post's content
     2345 *
     2346 * @since 3.6.0
     2347 *
     2348 * @param string $attached_size If an attached image is found, the size to display it.
     2349 * @param WP_Post $post Optional. Used instead of global $post when passed.
     2350 */
     2351function get_the_image( $attached_size = 'full', &$post = null ) {
     2352        if ( empty( $post ) )
     2353                $post = get_post();
     2354
     2355        if ( empty( $post ) )
     2356                return '';
     2357
     2358        if ( isset( $post->format_content ) )
     2359                return $post->format_content;
     2360
     2361        $medias = get_attached_images();
     2362        if ( ! empty( $medias ) ) {
     2363                $media = reset( $medias );
     2364                $sizes = get_intermediate_image_sizes();
     2365
     2366                $urls = array();
     2367                foreach ( $sizes as $size ) {
     2368                        $urls[] = reset( wp_get_attachment_image_src( $media->ID, $size ) );
     2369                        $urls[] = get_attachment_link( $media->ID );
     2370                }
     2371
     2372                $count = 1;
     2373                $matches = array();
     2374                $content =& $post->post_content;
     2375
     2376                if ( preg_match_all( '/' . get_shortcode_regex() . '/s', $content, $matches, PREG_SET_ORDER ) && ! empty( $matches ) ) {
     2377                        foreach ( $matches as $shortcode ) {
     2378                                if ( 'caption' === $shortcode[2] ) {
     2379                                        foreach ( $urls as $url ) {
     2380                                                if ( strstr( $shortcode[0], $url ) )
     2381                                                        $content = str_replace( $shortcode[0], '', $content, $count );
     2382                                        }
     2383                                }
     2384                        }
     2385                }
     2386
     2387                foreach ( array( 'a', 'img' ) as $tag ) {
     2388                        if ( preg_match_all( '#' . get_tag_regex( $tag ) . '#', $content, $matches, PREG_SET_ORDER ) && ! empty( $matches ) ) {
     2389                                foreach ( $matches as $match ) {
     2390                                        foreach ( $urls as $url ) {
     2391                                                if ( strstr( $match[0], $url ) )
     2392                                                        $content = str_replace( $match[0], '', $content, $count );
     2393                                        }
     2394                                }
     2395                        }
     2396                }
     2397
     2398                $post->split_content = $content;
     2399                $post->format_content = wp_get_attachment_image( $media->ID, $attached_size );
     2400                return $post->format_content;
     2401        }
     2402
     2403        $content =& $post->post_content;
     2404        $htmls = get_content_images( $content, true, true, 1 );
     2405        if ( ! empty( $htmls ) ) {
     2406                $html = reset( $htmls );
     2407                $post->split_content = $content;
     2408                $post->format_content = $html;
     2409                return $post->format_content;
     2410        }
     2411}
     2412
     2413/**
     2414 * Output the first image in the current (@global) post's content
     2415 *
     2416 * @since 3.6.0
     2417 *
     2418 * @param string $attached_size If an attached image is found, the size to display it.
     2419 */
     2420function the_image( $attached_size = 'full' ) {
     2421        echo get_the_image( $attached_size );
    22082422}
     2423 No newline at end of file
  • wp-includes/post-formats.php

    diff --git wp-includes/post-formats.php wp-includes/post-formats.php
    index ec68932..8545486 100644
    function get_the_url( $id = 0 ) { 
    465465function the_url() {
    466466        echo esc_url( get_the_url() );
    467467}
     468
     469/**
     470 * Retrieve the post content, minus the extracted post format content
     471 *
     472 * @since 3.6.0
     473 *
     474 * @internal there is a lot of code that could be abstracted from get_the_content()
     475 *
     476 * @param string $more_link_text Optional. Content for when there is more text.
     477 * @param bool $stripteaser Optional. Strip teaser content before the more text. Default is false.
     478 * @return string
     479 */
     480function get_the_extra_content( $more_link_text = null, $stripteaser = false ) {
     481        global $more, $page, $pages, $format_pages, $multipage, $preview;
     482
     483        $post = get_post();
     484
     485        if ( null === $more_link_text )
     486                $more_link_text = __( '(more...)' );
     487
     488        $output = '';
     489        $hasTeaser = false;
     490
     491        // If post password required and it doesn't match the cookie.
     492        if ( post_password_required() )
     493                return get_the_password_form();
     494
     495        if ( $page > count( $format_pages ) ) // if the requested page doesn't exist
     496                $page = count( $format_pages ); // give them the highest numbered page that DOES exist
     497
     498        $content = $format_pages[$page-1];
     499        if ( preg_match( '/<!--more(.*?)?-->/', $content, $matches ) ) {
     500                $content = explode( $matches[0], $content, 2 );
     501                if ( ! empty( $matches[1] ) && ! empty( $more_link_text ) )
     502                        $more_link_text = strip_tags( wp_kses_no_null( trim( $matches[1] ) ) );
     503
     504                $hasTeaser = true;
     505        } else {
     506                $content = array( $content );
     507        }
     508
     509        if ( ( false !== strpos( $post->post_content, '<!--noteaser-->' ) && ( ! $multipage || $page == 1 ) ) )
     510                $stripteaser = true;
     511
     512        $teaser = $content[0];
     513
     514        if ( $more && $stripteaser && $hasTeaser )
     515                $teaser = '';
     516
     517        $output .= $teaser;
     518
     519        if ( count( $content ) > 1 ) {
     520                if ( $more ) {
     521                        $output .= '<span id="more-' . $post->ID . '"></span>' . $content[1];
     522                } else {
     523                        if ( ! empty( $more_link_text ) )
     524                                $output .= apply_filters( 'the_content_more_link', ' <a href="' . get_permalink() . "#more-{$post->ID}\" class=\"more-link\">$more_link_text</a>", $more_link_text );
     525
     526                        $output = force_balance_tags( $output );
     527                }
     528        }
     529
     530        if ( $preview ) // preview fix for javascript bug with foreign languages
     531                $output = preg_replace_callback( '/\%u([0-9A-F]{4})/', '_convert_urlencoded_to_entities', $output );
     532
     533        return $output;
     534}
     535
     536/**
     537 * Display the post content minus the parsed post format data.
     538 *
     539 * @since 3.6.0
     540 *
     541 * @param string $more_link_text Optional. Content for when there is more text.
     542 * @param bool $stripteaser Optional. Strip teaser content before the more text. Default is false.
     543 */
     544function the_extra_content( $more_link_text = null, $stripteaser = false ) {
     545        $content = get_the_extra_content( $more_link_text, $stripteaser );
     546        $content = apply_filters( 'the_extra_content', $content );
     547        $content = str_replace( ']]>', ']]&gt;', $content );
     548        echo $content;
     549}
     550 No newline at end of file
  • wp-includes/query.php

    diff --git wp-includes/query.php wp-includes/query.php
    index 4f0ec99..333d2be 100644
    function wp_old_slug_redirect() { 
    36233623}
    36243624
    36253625/**
     3626 * Split the passed content by <!--nextpage-->
     3627 *
     3628 * @since 3.6.0
     3629 *
     3630 * @param string $content Content to split
     3631 * @return array Paged content
     3632 */
     3633function paginate_content( $content ) {
     3634        $content = str_replace( "\n<!--nextpage-->\n", '<!--nextpage-->', $content );
     3635        $content = str_replace( "\n<!--nextpage-->", '<!--nextpage-->', $content );
     3636        $content = str_replace( "<!--nextpage-->\n", '<!--nextpage-->', $content );
     3637        return explode( '<!--nextpage-->', $content);
     3638}
     3639
     3640/**
    36263641 * Set up global post data.
    36273642 *
    36283643 * @since 1.5.0
    function wp_old_slug_redirect() { 
    36323647 * @return bool True when finished.
    36333648 */
    36343649function setup_postdata($post) {
    3635         global $id, $authordata, $currentday, $currentmonth, $page, $pages, $multipage, $more, $numpages;
     3650        global $id, $authordata, $currentday, $currentmonth, $page, $pages, $format_pages, $multipage, $more, $numpages;
    36363651
    36373652        $id = (int) $post->ID;
    36383653
    function setup_postdata($post) { 
    36463661                $page = 1;
    36473662        if ( is_single() || is_page() || is_feed() )
    36483663                $more = 1;
    3649         $content = $post->post_content;
     3664        $split_content = $content = $post->post_content;
     3665        $format = get_post_format( $post );
     3666        if ( $format && in_array( $format, array( 'image', 'audio', 'video' ) ) ) {
     3667                switch ( $format ) {
     3668                case 'image':
     3669                        get_the_image( 'full', $post );
     3670                        if ( isset( $post->split_content ) )
     3671                                $split_content = $post->split_content;
     3672                        break;
     3673                case 'audio':
     3674                        get_the_media( 'audio', $post );
     3675                        if ( isset( $post->split_content ) )
     3676                                $split_content = $post->split_content;
     3677                        break;
     3678                case 'video':
     3679                        get_the_media( 'video', $post );
     3680                        if ( isset( $post->split_content ) )
     3681                                $split_content = $post->split_content;
     3682                        break;
     3683                }
     3684        }
     3685
    36503686        if ( strpos( $content, '<!--nextpage-->' ) ) {
    36513687                if ( $page > 1 )
    36523688                        $more = 1;
    36533689                $multipage = 1;
    3654                 $content = str_replace("\n<!--nextpage-->\n", '<!--nextpage-->', $content);
    3655                 $content = str_replace("\n<!--nextpage-->", '<!--nextpage-->', $content);
    3656                 $content = str_replace("<!--nextpage-->\n", '<!--nextpage-->', $content);
    3657                 $pages = explode('<!--nextpage-->', $content);
    3658                 $numpages = count($pages);
     3690                $pages = paginate_content( $content );
     3691                $format_pages = paginate_content( $split_content );
     3692                $numpages = count( $pages );
    36593693        } else {
    36603694                $pages = array( $post->post_content );
     3695                $format_pages = array( $split_content );
    36613696                $multipage = 0;
    36623697        }
    36633698