Changeset 2528564
- Timestamp:
- 05/09/2021 06:51:14 AM (5 years ago)
- Location:
- also-in-this-series/trunk
- Files:
-
- 3 edited
-
plugin-core.php (modified) (2 diffs)
-
plugin.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
also-in-this-series/trunk/plugin-core.php
r2528557 r2528564 19 19 20 20 function displaySeries( $args = [] ) { 21 $fargs = wp_parse_args( [21 $fargs = wp_parse_args( $args, [ 22 22 'series-slug' => null, 23 23 'seriesSlug' => null, // legacy arg … … 26 26 'sort-order' => false, 27 27 'order' => false, // legacy var 28 ] , $args);28 ] ); 29 29 30 30 $fargs = filter_var_array( [ -
also-in-this-series/trunk/plugin.php
r2528557 r2528564 4 4 Plugin URI: https://planetjon.ca/projects/also-in-this-series/ 5 5 Description: 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. 16 Version: 1.7.2 7 7 Requires at least: 3.5.0 8 8 Requires PHP: 5.4 9 Tested up to: 5.7. 09 Tested up to: 5.7.1 10 10 Author: Jonathan Weatherhead 11 11 Author URI: https://planetjon.ca -
also-in-this-series/trunk/readme.txt
r2528557 r2528564 5 5 Requires at least: 3.5.0 6 6 Requires PHP: 5.4 7 Tested up to: 5.7. 08 Stable tag: 1.7. 17 Tested up to: 5.7.1 8 Stable tag: 1.7.2 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 16 16 Group related posts in a series with a custom Series taxonomy. Automatically insert a list of all posts in the series in your content, 17 17 or 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 orslug"]18 [alsointhisseries series-slug="your-series-slug"] 19 19 20 20 === Custom Template ===
Note: See TracChangeset
for help on using the changeset viewer.