Plugin Directory

Changeset 2375253


Ignore:
Timestamp:
09/04/2020 01:16:15 PM (6 years ago)
Author:
hberberoglu
Message:

minor fixes. version 1.6.8

Location:
wp-favorite-posts/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-favorite-posts/trunk/readme.txt

    r2374358 r2375253  
    55wp-favorite-posts, reading list, post list, post lists, lists
    66Requires at least: 3.5
    7 Tested up to: 4.4.2
    8 Stable tag: 1.6.7
     7Tested up to: 5.5.1
     8Stable tag: 1.6.8
    99
    1010Allows visitors to add favorite posts. This plugin use cookies for saving data so
     
    5252
    5353== Changelog ==
     54= 1.6.8 (2020-09-04) =
     55* Updated tested up to info. Tested with 5.5.1.
     56
    5457= 1.6.7 (2020-09-03) =
    5558* Tested with 5.5.1 and fixed compatibility issues.
  • wp-favorite-posts/trunk/wp-favorite-posts.php

    r2374358 r2375253  
    44Plugin URI: https://github.com/hberberoglu/wp-favorite-posts
    55Description: Allows users to add favorite posts. This plugin use cookies for saving data so unregistered users can favorite a post. Put <code>&lt;?php wpfp_link(); ?&gt;</code> where ever you want on a single post. Then create a page which includes that text : <code>[wp-favorite-posts]</code> That's it!
    6 Version: 1.6.7
     6Version: 1.6.8
    77Author: Huseyin Berberoglu
    88Author URI: https://github.com/hberberoglu
     
    2828*/
    2929
    30 define('WPFP_VERSION', "1.6.6");
     30define('WPFP_JS_VERSION', "1.6.8");
    3131define('WPFP_PATH', plugins_url() . '/wp-favorite-posts');
    3232define('WPFP_META_KEY', "wpfp_favorites");
     
    322322function wpfp_add_js_script() {
    323323    if (!wpfp_get_option('dont_load_js_file'))
    324         wp_enqueue_script( "wp-favorite-posts", WPFP_PATH . "/script.js", array( 'jquery' ), WPFP_VERSION );
     324        wp_enqueue_script( "wp-favorite-posts", WPFP_PATH . "/script.js", array( 'jquery' ), WPFP_JS_VERSION );
    325325}
    326326add_action('wp_print_scripts', 'wpfp_add_js_script');
Note: See TracChangeset for help on using the changeset viewer.