• 12-01-2014, 00:49:19
    #1
    single php'de

    <?php film_partlar(); ?>
    functions php'de

    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 : 'Part 1';
                $output .= $link_before . $title . $link_after;
                if ( ($i != $page) || ((!$more) && ($page==1)) )
                    $output .= '</a>';
            }
            $output .= $after;
        }
        if ( $echo )
            echo $output;
        return $output;
    }


    çıkan sonuç bu şekilde fakat bir türlü aktif olan linki editleyemedim bu konuda yardım edebilecek biri varmı ? yada başka bir part sistemi bilen eklenti dışında
  • 12-01-2014, 20:44:56
    #2
    güncel
  • 17-11-2018, 21:29:08
    #3
    Bu function film_partlar göre istedigim başlıklara göre nasıl sıralaya bilirim.