Word Counter Plugin for Bearblog 0 ▲ ReedyBear's Blog 58 minutes ago · Tech · hide · 0 comments It adds a little counter to your edit post page that tells you how many words are in your post. For the most up-to-date version of it, see my gitlab I have submitted it to Herman's Bearblog Plugins. The CodeThere are a couple options you can configure at the top of the script. To style it through CSS, use the selector span.counter-display {} on your theme editor page. Visit https://bearblog.dev/dashboard/customise/ and paste the following code into your Dashboard footer content: <script> /* Plugin name: Word Counter Description: Displays the number of words in the content of your blog post, updates as you type. Author: ReedyBear Author URI: https://reedybear.bearblog.dev/bearblog/ Author URI 2: https://gitlab.com/taeluf/other/bearblog-stuff */ (function() { 'use strict'; ////// CONFIGURATIONS ////// /* This text is appended to the word count. Does _not_ accept HTML */ let counter_text = " words "; /* the word counter display is appended to this element */ let counter_parent_selector =… No comments yet. Log in to reply on the Fediverse. Comments will appear here.