Plugin Directory

Changeset 2955023


Ignore:
Timestamp:
08/17/2023 03:43:01 PM (3 years ago)
Author:
jakeparis
Message:

Update tested against for WordPress 6.3

Location:
bestseller-lists-from-new-york-times
Files:
4 deleted
2 edited
11 copied

Legend:

Unmodified
Added
Removed
  • bestseller-lists-from-new-york-times/tags/2.2.0/index.php

    r2853610 r2955023  
    44Plugin URI:  https://jakeparis.com/wordpress-plugins/
    55Description: Integrate bestseller lists from the New York Times into your own site with a user-friendly interface.
    6 Version:     2.1.0
     6Version:     2.2.0
    77Requires PHP: 5.4
    88Requires at least: 4.9
    9 Tested up to: 6.1.0
     9Tested up to: 6.3.0
    1010Author:      Jake Paris
    1111Author URI:  https://jakeparis.com/
     
    1414*/
    1515
    16 define('BSLNYT_PLUGIN_VERSION', '2.1.0');
     16define('BSLNYT_PLUGIN_VERSION', '2.2.0');
    1717define('BSLNYT_PLUGIN_PATH', plugin_dir_path(__FILE__) );
    1818define('BSLNYT_PLUGIN_URL', plugins_url('/', __FILE__) );
  • bestseller-lists-from-new-york-times/tags/2.2.0/readme.txt

    r2853610 r2955023  
    44Tags: books, library, bestsellers, libraries, reading lists
    55Requires at least: 4.9
    6 Tested up to: 6.0.0
    7 Stable tag: 2.0.2
     6Tested up to: 6.3.0
     7Stable tag: 2.2.0
    88Requires PHP: 5.4
    99
     
    1818== Use ==
    1919
    20 = WordPress 5+ =
    2120Use the *Bestseller Lists from NYT* block. You can optionally specify which list is initially displayed.
    2221
    23 = WordPress 4 =
    24 Use the `[nyt-bestseller-listings]` shortcode to embed the lists in your page. You can optionally specify which list is initially displayed by using the `initial-list` attribute with the list slug as the attribute value. Get the list slug by first placing the shortcode in your page, then visiting the page and changing lists. The page url will change as the list changes, and the list slug can be seen by looking for **nyt-list=SLUG-HERE** in your browser's url bar. So for example, to place the lists on a page and set the initial list to be children's picture books, you would use: `[nyt-bestseller-listings initial-list="picture-books"]`
     22There's also a shortcode available to embed the list viewer: `[nyt-bestseller-listings]`. You can optionally specify which list is initially displayed by using the `initial-list` attribute with the list slug as the attribute value. Get the list slug by first placing the shortcode in your page, then visiting the page and changing lists. The page url will change as the list changes, and the list slug can be seen by looking for **nyt-list=SLUG-HERE** in your browser's url bar. So for example, to place the lists on a page and set the initial list to be children's picture books, you would use: `[nyt-bestseller-listings initial-list="picture-books"]`
    2523
    26 To hide the images, add the following bit of css to your theme using the *Additional CSS* section in the Customizer: `.nyt-bestseller-listings-img { display: none; }`.
     24To hide the images, add the following bit of css to your theme stylesheet or to the *Additional CSS* section in the Customizer: `.nyt-bestseller-listings-img { display: none; }`.
    2725
    2826== Installation ==
     
    4846
    4947== Changelog ==
     48
     49= 2.2.0 =
     50
     51Tested with WordPress 6.3 and updated the readme a bit.
    5052
    5153= 2.1.0 =
  • bestseller-lists-from-new-york-times/trunk/index.php

    r2853610 r2955023  
    44Plugin URI:  https://jakeparis.com/wordpress-plugins/
    55Description: Integrate bestseller lists from the New York Times into your own site with a user-friendly interface.
    6 Version:     2.1.0
     6Version:     2.2.0
    77Requires PHP: 5.4
    88Requires at least: 4.9
    9 Tested up to: 6.1.0
     9Tested up to: 6.3.0
    1010Author:      Jake Paris
    1111Author URI:  https://jakeparis.com/
     
    1414*/
    1515
    16 define('BSLNYT_PLUGIN_VERSION', '2.1.0');
     16define('BSLNYT_PLUGIN_VERSION', '2.2.0');
    1717define('BSLNYT_PLUGIN_PATH', plugin_dir_path(__FILE__) );
    1818define('BSLNYT_PLUGIN_URL', plugins_url('/', __FILE__) );
  • bestseller-lists-from-new-york-times/trunk/readme.txt

    r2853610 r2955023  
    44Tags: books, library, bestsellers, libraries, reading lists
    55Requires at least: 4.9
    6 Tested up to: 6.0.0
    7 Stable tag: 2.0.2
     6Tested up to: 6.3.0
     7Stable tag: 2.2.0
    88Requires PHP: 5.4
    99
     
    1818== Use ==
    1919
    20 = WordPress 5+ =
    2120Use the *Bestseller Lists from NYT* block. You can optionally specify which list is initially displayed.
    2221
    23 = WordPress 4 =
    24 Use the `[nyt-bestseller-listings]` shortcode to embed the lists in your page. You can optionally specify which list is initially displayed by using the `initial-list` attribute with the list slug as the attribute value. Get the list slug by first placing the shortcode in your page, then visiting the page and changing lists. The page url will change as the list changes, and the list slug can be seen by looking for **nyt-list=SLUG-HERE** in your browser's url bar. So for example, to place the lists on a page and set the initial list to be children's picture books, you would use: `[nyt-bestseller-listings initial-list="picture-books"]`
     22There's also a shortcode available to embed the list viewer: `[nyt-bestseller-listings]`. You can optionally specify which list is initially displayed by using the `initial-list` attribute with the list slug as the attribute value. Get the list slug by first placing the shortcode in your page, then visiting the page and changing lists. The page url will change as the list changes, and the list slug can be seen by looking for **nyt-list=SLUG-HERE** in your browser's url bar. So for example, to place the lists on a page and set the initial list to be children's picture books, you would use: `[nyt-bestseller-listings initial-list="picture-books"]`
    2523
    26 To hide the images, add the following bit of css to your theme using the *Additional CSS* section in the Customizer: `.nyt-bestseller-listings-img { display: none; }`.
     24To hide the images, add the following bit of css to your theme stylesheet or to the *Additional CSS* section in the Customizer: `.nyt-bestseller-listings-img { display: none; }`.
    2725
    2826== Installation ==
     
    4846
    4947== Changelog ==
     48
     49= 2.2.0 =
     50
     51Tested with WordPress 6.3 and updated the readme a bit.
    5052
    5153= 2.1.0 =
Note: See TracChangeset for help on using the changeset viewer.