نمایش زمان مطالعه مقاله در المنتور

فهرست مطلب :

کد استفاده شده در ویدئو

  function wp_calculate_reading_time() {
    // Get the post content
    $post_content = get_post_field('post_content', get_the_ID());

    // Strip shortcodes and HTML tags to get the plain text
    $clean_content = strip_shortcodes(strip_tags($post_content));

    // Use a regular expression to match words in Farsi
    // Farsi words are usually separated by spaces or punctuation marks
    $word_count = preg_match_all('/[\p{L}]+/u', $clean_content, $matches);

    // Ensure a minimum word count to avoid issues with empty or very short content
    if ($word_count == 0) {
        return 1; // Return 1 minute for content with very few words
    }

    // Calculate reading time assuming 200 words per minute
    $reading_speed = 200; // You can adjust this value if necessary
    $reading_time = ceil($word_count / $reading_speed);

    return $reading_time;
}

function wp_reading_time_shortcode() {
    // Get the reading time
    $reading_time = wp_calculate_reading_time();

    // Return the reading time as a formatted string
    return   $reading_time ;
}

add_shortcode('reading_time', 'wp_reading_time_shortcode');
//end of the reading time 
if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}
مطالب مرتبط
نویسنده مطلب
Picture of رسول قجاوند
رسول قجاوند
سلام دوست عزیز،وردپرس به من شانس داشتن یه زندگی بهتر و آینده روشنتر داده،با یادگرفتن وردپرس و سئو تونستم زندگی بهتری داشته باشم و تصمیم گرفتم دیگران هم این را تجربه کنند، خوشحالم که خط‌اول را برای یادگرفتن انتخاب کردی. نظر یادتون نره !
هیچ کامنتی ثبت نشده، اولین کامنت باشید !

دیدگاهتان را بنویسید

نشانی ایمیل شما منتشر نخواهد شد. بخش‌های موردنیاز علامت‌گذاری شده‌اند *

16 − هشت =

برای طراحی سایت و سئو مشاوره بگیرید.

آنلاین شاپتاتو 2 روزه راه بنداز و بیا تو ترب و گوگل.

0913-509-7727

فهرست مطلب :