If you disable the reading time automatically adding the content and excerpts you can add the reading time in manually with the shortcode.
[rt_reading_time label="Reading Time:" postfix="minutes" postfix_singular="minute"]
Alternatively you could do this programmatically with the remove_filter function.
Putting this in your page.php file would remove it from pages using that template.
remove_filter('the_content', array($readingTimeWP, 'rt_add_reading_time_before_content'));
Adding controls for specific post types is on the roadmap, but no schedule is planned at this time.
Hi,
I have tried inserting the code:
[rt_reading_time label="Reading Time:" postfix="minutes" postfix_singular="minute"] at the very top of the contact page but it shows the read time twice instead (while if I understand it correctly it should disable it).
Any way how to actually get rid of it?
I fixed it on home page with CSS fix posted elsewhere but on contacts page it’s really issue.
Hi John,
You would need to disable the reading time from displaying automatically in the plugins settings before using the shortcode.