Changeset 3485076
- Timestamp:
- 03/17/2026 08:26:24 PM (3 weeks ago)
- Location:
- doubledome-wordcount-details-dashboard
- Files:
-
- 13 added
- 4 edited
-
tags/2.2 (added)
-
tags/2.2/css (added)
-
tags/2.2/css/styles.css (added)
-
tags/2.2/doubledome-word-count.php (added)
-
tags/2.2/includes (added)
-
tags/2.2/includes/admin-columns.php (added)
-
tags/2.2/includes/exporter.php (added)
-
tags/2.2/includes/settings-page.php (added)
-
tags/2.2/includes/wcfunctions.php (added)
-
tags/2.2/js (added)
-
tags/2.2/js/counter.js (added)
-
tags/2.2/js/settings.js (added)
-
tags/2.2/readme.txt (added)
-
trunk/doubledome-word-count.php (modified) (2 diffs)
-
trunk/includes/wcfunctions.php (modified) (1 diff)
-
trunk/js/settings.js (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
doubledome-wordcount-details-dashboard/trunk/doubledome-word-count.php
r3415304 r3485076 6 6 * Author: DoubleDome Digital Marketing 7 7 * Author URI: https://www.doubledome.com/word-count-wordpress-plugin 8 * Version: 2. 18 * Version: 2.2 9 9 * License: GPL-2.0+ 10 10 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt … … 15 15 16 16 define( 'WORD_COUNT_DD_ROOT', __DIR__ ); // Setup plugin directory Root path 17 define( 'WC_DD_VERSION', "2. 1");17 define( 'WC_DD_VERSION', "2.2"); 18 18 define( 'WORD_COUNT_DD_URL', plugin_dir_url(__FILE__)); 19 19 -
doubledome-wordcount-details-dashboard/trunk/includes/wcfunctions.php
r3283462 r3485076 156 156 function dd_enqueue_counter_script($hook) { 157 157 if ($hook === 'settings_page_dd-word-counter-settings') { 158 wp_enqueue_script('wc_dd-settings-js', WORD_COUNT_DD_URL . 'js/settings.js', ['jquery'], null, true);158 wp_enqueue_script('wc_dd-settings-js', WORD_COUNT_DD_URL . 'js/settings.js', ['jquery'], WC_DD_VERSION, true); 159 159 } 160 160 if (!in_array($hook, ['post.php', 'post-new.php'])) return; -
doubledome-wordcount-details-dashboard/trunk/js/settings.js
r3283462 r3485076 1 1 jQuery(document).ready(function ($) { 2 $('# wc_dd-download-stats').on('click', function () {3 const postType = $('# wc_dd-export-post-type').val();4 const author = $('# wc_dd-export-author').val();5 const startDate = $('# wc_dd-start-date').val();6 const endDate = $('# wc_dd-end-date').val();7 const format = $('# wc_dd-export-format').val();2 $('#ddwc-download-stats').on('click', function () { 3 const postType = $('#ddwc-export-post-type').val(); 4 const author = $('#ddwc-export-author').val(); 5 const startDate = $('#ddwc-start-date').val(); 6 const endDate = $('#ddwc-end-date').val(); 7 const format = $('#ddwc-export-format').val(); 8 8 9 9 $.ajax({ -
doubledome-wordcount-details-dashboard/trunk/readme.txt
r3415304 r3485076 3 3 Tags: Word count, Wordcount, Post count display, Page statistics dashboard, WordPress content analytics, Custom post type stats, Dashboard content insights, Average post count, Total page count, WordPress content overview, Post statistics plugin, Content metrics WordPress 4 4 Requires at least: 5.4 5 Tested up to: 6.9 6 Stable tag: 2. 15 Tested up to: 6.9.4 6 Stable tag: 2.2 7 7 License: GPL-2.0+ 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 61 61 == Changelog == 62 62 63 = 2.2 = 64 * Fixed an issue with Export Stats 65 * Verified on Wordpress 6.9.4 66 63 67 = 2.1 = 64 68 * Tested and verified on Wordpress 6.9
Note: See TracChangeset
for help on using the changeset viewer.