Title: Readlyte &#8211; Reading Time
Author: munizasultan
Published: <strong>10 ກັນຍາ 2026</strong>
Last modified: 10 ກັນຍາ 2026

---

ຄົ້ນຫາປລັກອິນ

![](https://ps.w.org/readlyte-reading-time/assets/banner-772x250.png?rev=3690443)

![](https://ps.w.org/readlyte-reading-time/assets/icon-256x256.png?rev=3690443)

# Readlyte – Reading Time

 ໂດຍ [munizasultan](https://profiles.wordpress.org/munizasultan/)

[ດາວໂຫຼດ](https://downloads.wordpress.org/plugin/readlyte-reading-time.1.0.0.zip)

 * [ລາຍລອຽດ](https://lo.wordpress.org/plugins/readlyte-reading-time/#description)
 * [ການຣີວິວ](https://lo.wordpress.org/plugins/readlyte-reading-time/#reviews)
 *  [ການຕິດຕັ້ງ](https://lo.wordpress.org/plugins/readlyte-reading-time/#installation)
 * [ການພັດທະນາ](https://lo.wordpress.org/plugins/readlyte-reading-time/#developers)

 [ການຊ່ວຍເຫຼືອ](https://wordpress.org/support/plugin/readlyte-reading-time/)

## ຄຳອະທິບາຍ

Readlyte estimates how long it will take a visitor to read a post, based on its 
word count and a configurable words-per-minute rate, and displays it as a small 
badge.

**Features**

 * Automatic display before or after post content — no template edits required.
 * `[rdlt_reading_time]` shortcode for manual placement, including `[rdlt_reading_time
   id="123"]` for another post.
 * A “Reading Time (Readlyte)” Gutenberg block, server-rendered so it always matches
   your current settings.
 * An Elementor widget (when Elementor is active), with per-instance overrides for
   words-per-minute/text/icon and full Style tab controls (color, typography, icon
   gap).
 * Configurable words-per-minute, display text (`{time}` / `{unit}` placeholders),
   and which post types it applies to.
 * Word count strips HTML tags, shortcodes, and block-editor comments so the estimate
   reflects visible text only.
 * Theme-friendly: styled entirely with CSS classes and custom properties (`--rdlt-
   color`, `--rdlt-icon-color`, `--rdlt-font-size`, `--rdlt-gap`), so a theme can
   restyle the badge from its own stylesheet.
 * Developer filters: `rdlt_word_count`, `rdlt_calculated_read_time`, `rdlt_read_time_text`,`
   rdlt_read_time_icon`.

## ພາບໜ້າຈໍ

[[

[[

[[

[[

## ບລັອກ

ປລັກອິນນີ້ມີ 1 ບລັອກ.

 *   Reading Time (Readlyte) Displays the estimated reading time for this post.

## ການຕິດຕັ້ງ

 1. Upload the `readlyte-reading-time` folder to `/wp-content/plugins/`.
 2. Activate the plugin through the ‘Plugins’ menu in WordPress.
 3. Go to Settings  Readlyte to configure words-per-minute, display text, position,
    and enabled post types.

## ຄຳຖາມທີ່ພົບເລື້ອຍ

### Can I place the read time somewhere specific in my template?

Yes. Set “Display mode” to “Shortcode / block only” in Settings  Readlyte, then 
use the `[rdlt_reading_time]` shortcode or the “Reading Time (Readlyte)” block wherever
you like, or call `RDLT_Display::instance()->render_badge( $post_id )` directly 
in a theme template.

### Does it work with Gutenberg and the Classic Editor?

Yes. The shortcode works with both. The block requires the block editor (Gutenberg/
WordPress 5.8+).

### How is word count calculated?

HTML tags, shortcodes, and block-editor comments are stripped before counting whitespace-
separated words in the visible text.

### Can I change the icon shown next to the read time?

Yes, with the `rdlt_read_time_icon` filter. Return your own HTML (inline SVG, a `
<i>` icon-font tag, or an `<img>`), or return an empty string to remove the icon
entirely.

    ```
    // Swap in a Font Awesome icon.
    add_filter( 'rdlt_read_time_icon', function( $icon, $post_id ) {
        return '<i class="fa-regular fa-clock" aria-hidden="true"></i>';
    }, 10, 2 );

    // Remove the icon.
    add_filter( 'rdlt_read_time_icon', '__return_empty_string' );
    ```

The icon is sanitized with `wp_kses` (svg/path/circle/i/span/img only), so only 
presentational markup gets through.

## ການຣີວິວ

ບໍ່ມີການຣີວິວສຳລັບປລັກອິນນີ້.

## ຜູ້ຮ່ວມພັດທະນາ ແລະ ຜູ້ພັດທະນາ

“Readlyte – Reading Time” ແມ່ນຊອຟແວໂອເພັນຊອດ (Open Source). ບຸກຄົນຕໍ່ໄປນີ້ໄດ້ມີສ່ວນຮ່ວມ
ໃນການພັດທະນາປລັກອິນນີ້.

ຜູ້ຮ່ວມພັດທະນາ

 *   [ munizasultan ](https://profiles.wordpress.org/munizasultan/)

[ແປ “Readlyte – Reading Time” ເປັນພາສາຂອງເຈົ້າ.](https://translate.wordpress.org/projects/wp-plugins/readlyte-reading-time)

### ສົນໃຈຮ່ວມພັດທະນາບໍ່?

[ເບິ່ງລະຫັດ](https://plugins.trac.wordpress.org/browser/readlyte-reading-time/),
ກວດເບິ່ງ [ຄັງເກັບ SVN](https://plugins.svn.wordpress.org/readlyte-reading-time/),
ຫຼື ຕິດຕາມ [ບັນທຶກການພັດທະນາ](https://plugins.trac.wordpress.org/log/readlyte-reading-time/)
ຜ່ານ [RSS](https://plugins.trac.wordpress.org/log/readlyte-reading-time/?limit=100&mode=stop_on_copy&format=rss).

## ບັນທຶກການປ່ຽນແປງ

#### 1.0.0

 * Initial release as Readlyte (previously submitted under the name “Read Time Calculator”;
   renamed at the request of the WordPress.org Plugin Review Team for name distinctiveness—
   all identifiers, the shortcode tag, CSS classes, and the option name were updated
   accordingly).
 * Automatic display, `[rdlt_reading_time]` shortcode, Gutenberg block, and Elementor
   widget.
 * Developer filters: `rdlt_word_count`, `rdlt_calculated_read_time`, `rdlt_read_time_text`,`
   rdlt_read_time_icon`.

## ຂໍ້ມູນກຳກັບ (Meta)

 *  ເວີຊັນ **1.0.0**
 *  ອັບເດດຫຼ້າສຸດເມື່ອ **2 ອາທິດ ທີ່ຜ່ານມາ** ທີ່ຜ່ານມາ
 *  ການຕິດຕັ້ງທີ່ໃຊ້ງານຢູ່ **ໜ້ອຍກວ່າ 10**
 *  ເວີຊັນ WordPress ** 5.8 ຫຼື ສູງກວ່າ **
 *  ທົດສອບເຖິງເວີຊັນ **7.1.2**
 *  ເວີຊັນ PHP ** 7.4 ຫຼື ສູງກວ່າ **
 *  ພາສາ
 * [English (US)](https://wordpress.org/plugins/readlyte-reading-time/)
 * ແທັກ
 * [blog](https://lo.wordpress.org/plugins/tags/blog/)[content](https://lo.wordpress.org/plugins/tags/content/)
   [gutenberg](https://lo.wordpress.org/plugins/tags/gutenberg/)[read time](https://lo.wordpress.org/plugins/tags/read-time/)
   [reading time](https://lo.wordpress.org/plugins/tags/reading-time/)
 *  [ມຸມມອງຂັ້ນສູງ](https://lo.wordpress.org/plugins/readlyte-reading-time/advanced/)

## ການໃຫ້ຄະແນນ

ຍັງບໍ່ມີການສົ່ງຄຳວິຈານເທື່ອ.

[ການທົບທວນຂອງທ່ານ](https://wordpress.org/support/plugin/readlyte-reading-time/reviews/#new-post)

[ເບິ່ງທັງໝົດ ການຣີວິວ](https://wordpress.org/support/plugin/readlyte-reading-time/reviews/)

## ຜູ້ຮ່ວມພັດທະນາ

 *   [ munizasultan ](https://profiles.wordpress.org/munizasultan/)

## ການຊ່ວຍເຫຼືອ

ມີຄຳຖາມ ຫຼື ຕ້ອງການຄວາມຊ່ວຍເຫຼືອບໍ່?

 [ເບິ່ງຟໍຣັມການຊ່ວຍເຫຼືອ](https://wordpress.org/support/plugin/readlyte-reading-time/)