วิธีจบประโยคที่ตัดตอนมาด้วยประโยคแทนที่จะเป็นคำ?


15

นี่คือข้อความที่ตัดตอนมาจากโพสต์ในหน้าแรกของฉัน ฉันต้องการที่จะจบประโยคที่ตัดตอนมาด้วยประโยค ในกรณีนี้มันเป็นโอกาส ' ฉันรู้วิธีปรับเปลี่ยนความยาว แต่จะไม่ทำสิ่งที่ฉันต้องการ

ป้อนคำอธิบายรูปภาพที่นี่

นี่คือข้อความที่ตัดตอนมาจากเว็บไซต์อื่น ๆ ที่นี่คุณเห็นข้อความที่ตัดตอนมาลงท้ายด้วยประโยคที่เหมาะสมซึ่งแตกต่างจากด้านบนซึ่งลงท้ายด้วยคำแรกของประโยคถัดไป 'เชิงรุก'

ป้อนคำอธิบายรูปภาพที่นี่

หลังจากใช้งานโซลูชันโดย GM : -

ป้อนคำอธิบายรูปภาพที่นี่


โปรดอธิบายปัญหาของคุณให้ดีกว่านั้น จากคำตอบและความคิดเห็นเกี่ยวกับพวกเขามันยากที่จะเข้าใจสิ่งที่คุณต้องการเพื่อให้บรรลุ
ไกเซอร์

@kaiser ฉันได้อัปเดตรายละเอียดแล้ว
Mohit

@Mohit คุณลองใช้รหัสของฉันแล้วหรือยัง
gmazzap

ใช่ข้อความที่ตัดตอนมาลงท้ายด้วยประโยค แต่ 'อ่านเพิ่มเติม' หายไป
Mohit

@GM เอาล่ะฉันต้องเพิ่มการอ่านเพิ่มเติมในการกลับมา
Mohit

คำตอบ:


13

สิ่งนี้ต้องใช้ PHP 5.3+ (WP ต้องการ PHP 5.2.4+)

add_filter('get_the_excerpt', 'end_with_sentence');

function end_with_sentence($excerpt) {
  $allowed_end = array('.', '!', '?', '...');
  $exc = explode( ' ', $excerpt );
  $found = false;
  $last = '';
  while ( ! $found && ! empty($exc) ) { 
    $last = array_pop($exc);
    $end = strrev( $last );
    $found = in_array( $end{0}, $allowed_end );
  }
  return (! empty($exc)) ? $excerpt : rtrim(implode(' ', $exc) . ' ' .$last);
}

แก้ไข

หลังจากความคิดเห็น @kaiser ฉันพยายามเรียกใช้ในส่วนบันทึก / อัปเดตเพื่อป้องกันไม่ให้หน้าช้าลงในการแสดงบทความจำนวนมาก สิ่งนี้ควรได้รับการทดสอบ

add_filter('wp_insert_post_data', 'end_with_sentence_on_save', 20, 2);

function end_with_sentence_on_save($data, $postarr) {
  if ( ! empty( $data['post_content'] ) && $data['post_status'] != 'inherit' && $data['post_status'] != 'trash' ) {
    $text = strip_shortcodes( $data['post_content'] );
    $text = apply_filters('the_content', $text );
    $text = str_replace(']]>', ']]>', $text );
    $excerpt_length = apply_filters('excerpt_length', 55);
    $data['post_excerpt'] = wp_trim_words($text, $excerpt_length, '');
  } else {
    return $data;
  }
  $allowed_end = array('.', '!', '?', '...');
  $exc = explode(' ', $data['post_excerpt']);
  $found = false;
  $last = '';
  while ( ! $found && ! empty($exc) ) { 
    $last = array_pop($exc);
    $end = strrev( $last );
    $found = in_array( $end{0}, $allowed_end );
  }
  if (! empty($exc)) $data['post_excerpt'] = rtrim(implode(' ', $exc) . ' ' .$last);
  return $data; 
}

1
แน่ใจเกี่ยวกับว่า$end{0}? แต่คุณสามารถกลับมาหรือbreakเมื่อพบบางสิ่ง หมายเหตุเพิ่มเติม: มันอาจจะดีกว่าเมื่อบันทึกโพสต์ดังนั้นจึงไม่ได้สร้างใหม่ในระหว่างรันไทม์ซึ่งอาจช้ามากหากคุณแสดงโพสต์จำนวนมาก
ไกเซอร์

@kaiser อ้างถึง: อาจมีการเข้าถึงสตริงโดยใช้เครื่องหมายปีกกาเช่นเดียวกับใน $ str {42} เพื่อจุดประสงค์เดียวกัน php.net docsในการค้นหาบางสิ่งฉันต้องหาถ่านตัวสุดท้าย ใช้$foundฉันตัดวงจรและbreakตรวจสอบสตริงที่ผ่านมาจึงไม่จำเป็นต้อง
gmazzap

พลาดโดยสิ้นเชิงว่ามันเป็นการตรวจสอบwhile false+1
ไกเซอร์

@kaiser +1 สำหรับส่วนที่สองของความคิดเห็นของคุณตอนนี้ฉันแก้ไขรหัสเพื่อให้ทำงานในบันทึก
gmazzap

1
Sure @jessica นั้นแก้ไขได้ไม่ดี (ในเวอร์ชั่นดั้งเดิมมันก็โอเค) ขอบคุณคง
gmazzap

2

นี่คือเวอร์ชันของฉันใช้แท็ก html ทั้งหมดและตัดเนื้อหาหลังจากคำสุดท้ายในประโยค

if ( ! function_exists( 'pietergoosen_custom_wp_trim_excerpt' ) ) : 

    function pietergoosen_custom_wp_trim_excerpt($pietergoosen_excerpt) {
    global $post;
    $raw_excerpt = $pietergoosen_excerpt;
        if ( '' == $pietergoosen_excerpt ) {

            $pietergoosen_excerpt = get_the_content('');
            $pietergoosen_excerpt = strip_shortcodes( $pietergoosen_excerpt );
            $pietergoosen_excerpt = apply_filters('the_content', $pietergoosen_excerpt);
            $pietergoosen_excerpt = str_replace(']]>', ']]>', $pietergoosen_excerpt);

            //Set the excerpt word count and only break after sentence is complete.
                $excerpt_word_count = 75;
                $excerpt_length = apply_filters('excerpt_length', $excerpt_word_count); 
                $tokens = array();
                $excerptOutput = '';
                $count = 0;

                // Divide the string into tokens; HTML tags, or words, followed by any whitespace
                preg_match_all('/(<[^>]+>|[^<>\s]+)\s*/u', $pietergoosen_excerpt, $tokens);

                foreach ($tokens[0] as $token) { 

                    if ($count >= $excerpt_word_count && preg_match('/[\?\.\!]\s*$/uS', $token)) { 
                    // Limit reached, continue until  ? . or ! occur at the end
                        $excerptOutput .= trim($token);
                        break;
                    }

                    // Add words to complete sentence
                    $count++;

                    // Append what's left of the token
                    $excerptOutput .= $token;
                }

            $pietergoosen_excerpt = trim(force_balance_tags($excerptOutput));

                $excerpt_end = ' <a href="'. esc_url( get_permalink() ) . '">' . '&nbsp;&raquo;&nbsp;' . sprintf(__( 'Read more about: %s &nbsp;&raquo;', 'pietergoosen' ), get_the_title()) . '</a>'; 
                $excerpt_more = apply_filters('excerpt_more', ' ' . $excerpt_end); 

                //$pos = strrpos($pietergoosen_excerpt, '</');
                //if ($pos !== false)
                // Inside last HTML tag
                //$pietergoosen_excerpt = substr_replace($pietergoosen_excerpt, $excerpt_end, $pos, 0);
                //else
                // After the content
                $pietergoosen_excerpt .= $excerpt_end;

            return $pietergoosen_excerpt;   

        }
        return apply_filters('pietergoosen_custom_wp_trim_excerpt', $pietergoosen_excerpt, $raw_excerpt);
    }

endif; 

remove_filter('get_the_excerpt', 'wp_trim_excerpt');
add_filter('get_the_excerpt', 'pietergoosen_custom_wp_trim_excerpt'); 

0

ในกรณีที่มีคนใช้คำตอบคำแนะนำ: สิ่งนี้จะทำลายฟิลด์ที่กำหนดเองขั้นสูง ACF ยังเรียกใช้wp_insert_post_dataเมื่อสร้างหรืออัปเดตเขตข้อมูล แต่$dataตัวแปรไม่เหมือนกันและจะส่งผลให้ชื่อเขตข้อมูล ACF กลายเป็นคำที่ไม่มีความหมายซึ่งอ่านไม่ออกซึ่งทำให้ไม่สามารถใช้ฟิลด์ได้

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.