Plugin Directory

Changeset 2528564


Ignore:
Timestamp:
05/09/2021 06:51:14 AM (5 years ago)
Author:
jweathe
Message:

1.7.2 shortcode hotfix and improved documentation

Location:
also-in-this-series/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • also-in-this-series/trunk/plugin-core.php

    r2528557 r2528564  
    1919
    2020function displaySeries( $args = [] ) {
    21     $fargs = wp_parse_args( [
     21    $fargs = wp_parse_args( $args, [
    2222        'series-slug' => null,
    2323        'seriesSlug' => null, // legacy arg
     
    2626        'sort-order' => false,
    2727        'order' => false, // legacy var
    28     ], $args );
     28    ] );
    2929
    3030    $fargs = filter_var_array( [
  • also-in-this-series/trunk/plugin.php

    r2528557 r2528564  
    44Plugin URI: https://planetjon.ca/projects/also-in-this-series/
    55Description: Group related posts in a series with a custom Series taxonomy. and a list of all posts in the series in your content.
    6 Version: 1.7.1
     6Version: 1.7.2
    77Requires at least: 3.5.0
    88Requires PHP: 5.4
    9 Tested up to: 5.7.0
     9Tested up to: 5.7.1
    1010Author: Jonathan Weatherhead
    1111Author URI: https://planetjon.ca
  • also-in-this-series/trunk/readme.txt

    r2528557 r2528564  
    55Requires at least: 3.5.0
    66Requires PHP: 5.4
    7 Tested up to: 5.7.0
    8 Stable tag: 1.7.1
     7Tested up to: 5.7.1
     8Stable tag: 1.7.2
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1616Group related posts in a series with a custom Series taxonomy. Automatically insert a list of all posts in the series in your content,
    1717or use the [alsointhisseries] shortcode to manually insert as needed. To manually insert an arbitraty series, use the series parameter in the shortcode
    18 [alsointhisseries series="series name or slug"]
     18[alsointhisseries series-slug="your-series-slug"]
    1919
    2020=== Custom Template ===
Note: See TracChangeset for help on using the changeset viewer.