Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Add Clock Icon after Reading Time */
- (function($) {
- $(document).ready(function() {
- let base = $('.jeg_meta_reading_time');
- let text = base.find('span').text();
- base.html(text + '<i class="fa fa-clock-o" aria-hidden="true"></i>'); /* For Font Awesome 4 */
- // base.html(text + '<i class="fas fa-clock"></i>'); /* For Font Awesome 6 */
- });
- }(jQuery));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement