I’m using a plugin to add estimated reading time to articles and testing it out on a private dev site.
I need this info to display either within the post meta or simply floating right, but inline with the post meta.
Didn’t see any way to hook into the post meta, and after the article title didn’t work (it put it below rather than inline, even with float styling applied). And I’m not seeing any obvious place in templates files to handle it in the child theme.
What would be the best way to do this?
Here’s the code I’m trying to display floating right of the post meta.
<?php echo do_shortcode('[rt_reading_time label="Reading Time:" postfix="min"]'); ?>
Thanks!