KarahaNCode adlı üyeden alıntı: mesajı görüntüle
Bu kodu functions.php en altta bulunan tagın üzerine ekleyin. ?>
function film_partlar($args = '') {
    $defaults = array(
        'link_before' => '<span class="rad3">', 
        'link_after' => '</span>',
        'echo' => 1
    );

    $r = wp_parse_args( $args, $defaults );
    extract( $r, EXTR_SKIP );

    global $page, $numpages, $multipage, $more, $pagenow, $pages;

    $output = '';
    if ( $multipage ) {
        $output .= $before;
        for ( $i = 1; $i < ($numpages+1); $i = $i + 1 ) {
            $part_content = $pages[$i-1];
            $has_part_title = strpos( $part_content, '<!--baslik:' );
            if( 0 === $has_part_title ) {
                $end = strpos( $part_content, '-->' );
                $title = trim( str_replace( '<!--baslik:', '', substr( $part_content, 0, $end ) ) );
            }
            $output .= ' ';
            if ( ($i != $page) || ((!$more) && ($page == 1)) ) {
                $output .= _wp_link_page($i);
            }
            $title = isset( $title ) && ( strlen( $title ) > 0 ) ? $title : 'Bölüm 1';
            $output .= $link_before . $title . $link_after;
            if ( ($i != $page) || ((!$more) && ($page==1)) )
                $output .= '</a>';
        }
        $output .= $after;
    }
    if ( $echo )
        echo $output;
    return $output;
}
Sayfanıza part sistemini bu şekilde ekleyin.
<!--baslik:Fragman-->
fragmanın embed kodu
<!--nextpage--><!--baslik:Part 1-->
İlk Part embed kodu
<!--nextpage--><!--baslik:Part 2-->
İkinci Part embed kodu
Nerede göstermek istiyorsanız oraya yapıstırın.
<?php if( film_partlar( "('before=&after=&link_before=<span>&link_after=</span>&pagelink=%.Part');", true) ): ?>
<?php else: ?> 
<?php endif; ?>
Artık istediğinizi yapabilirsiniz. Saygılarımla.
Nerede göstermek istiyorsan oraya yapıstır demişsin konu içerisinde göstermek istiyorum single.php içine eklemem lazımdı sanırım denedim ama olmadı. Yanlışmı yapdım acaba ?