Plugin Directory

Changeset 1375048


Ignore:
Timestamp:
03/20/2016 03:15:23 PM (10 years ago)
Author:
errnio
Message:

Added script versioning and parameters validation

Location:
reading-progress-bar-by-errnio/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • reading-progress-bar-by-errnio/trunk/readingprogressbar-by-errnio.php

    r1345165 r1375048  
    44Plugin URI: http://errnio.com
    55Description: Reading Progress Bar by errnio helps your users know their progress on the page.
    6 Version: 1.2
     6Version: 1.3
    77Author: Errnio
    88Author URI: http://errnio.com
     
    1111/***** Constants ******/
    1212
     13define('READINGPROGRESS_BY_ERRNIO_VERSION', '1.3');
    1314define('READINGPROGRESS_BY_ERRNIO_INSTALLER_NAME', 'wordpress_readingprogress_by_errnio');
    1415
     
    162163    $tagId = get_option(READINGPROGRESS_BY_ERRNIO_OPTION_NAME_TAGID);
    163164
     165    if (!$tagId || empty($tagId)) {
     166        return;
     167    }
     168
    164169    $script_url = "//service.errnio.com/loader?tagid=".$tagId;
    165     wp_register_script($handle, $script_url, false, '1.0', true);
     170    wp_register_script($handle, $script_url, false, READINGPROGRESS_BY_ERRNIO_VERSION, true);
    166171    wp_enqueue_script($handle );
    167172
  • reading-progress-bar-by-errnio/trunk/readme.txt

    r1368185 r1375048  
    44Tags: mobile, engagement, gesture, bounce rate, time spent, increase traffic, content recommendation, errnio, social, content, wordpress, growth, traffic, increase site traffic, increase traffic, internal traffic, circulation, subscribers, widget, content analytics, inbound marketing, suggested content, taboola, outbrain, popular content, recommended content, more content, site content, more articles, article recommendation, article suggestion, suggested articles, recommended articles, best content, best articles, content, cross, cross promotion, engageya, feed, feeds, increase readership, links, page, pages, Post, posts, promote, readership, recommendations, related, Related Content, related posts, related slider, related thumbnails, related-links, rss, slider, thumbnails, traffic, traffic exchange, bar, indicator, location, progress, progress bar, progressbar, scroll, Scroll bar, scrollbar
    55Tested up to: 4.4
    6 Stable tag: 1.2
     6Stable tag: 1.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    149149== Changelog ==
    150150
     151= 1.3 =
     152* Added script versioning and parameters validation
     153
    151154= 1.2 =
    152155* Simplified code on wp client side
     
    163166**1.1 Added handling of multiple installed errnio plugins
    164167**1.2 Simplified code on wp client side
     168**1.3 Added script versioning and parameters validation
Note: See TracChangeset for help on using the changeset viewer.