Changeset 3222995
- Timestamp:
- 01/15/2025 02:58:05 PM (15 months ago)
- Location:
- ac-custom-loop-shortcode/trunk
- Files:
-
- 2 edited
-
ac-wp-custom-loop-sc.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ac-custom-loop-shortcode/trunk/ac-wp-custom-loop-sc.php
r3222983 r3222995 4 4 Plugin URI: https://ambercouch.co.uk 5 5 Description: Shortcode ( [ac_custom_loop] ) that allows you to easily list post, pages or custom posts with the WordPress content editor or in any widget that supports short code. A typical use would be to show your latest post on your homepage. 6 Version: 1.7 6 Version: 1.7.1 7 7 Author: AmberCouch 8 8 Author URI: http://ambercouch.co.uk … … 443 443 444 444 // Check if the template exists 445 if (!file_exists($template) ) {445 if (!file_exists($template) && is_array($template)) { 446 446 $output .= $template['message']; 447 447 $template = $template['template']; -
ac-custom-loop-shortcode/trunk/readme.txt
r3222983 r3222995 5 5 Requires at least: 5.2 6 6 Tested up to: 6.7.1 7 Stable tag: 1.7 7 Stable tag: 1.7.1 8 8 Requires PHP: 5.2.4 9 9 License: GPLv2 or later … … 90 90 == Changelog == 91 91 92 = 1.7.1 = 93 * Fixed better support for custom templates 94 92 95 = 1.7 = 93 96 * Added better support for custom templates
Note: See TracChangeset
for help on using the changeset viewer.