Changeset 3280779
- Timestamp:
- 04/24/2025 10:04:07 AM (11 months ago)
- Location:
- a3-portfolio/trunk
- Files:
-
- 4 edited
-
a3-portfolio.php (modified) (2 diffs)
-
changelog.txt (modified) (1 diff)
-
includes/frontend/class-a3-portfolio-template-loader.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
a3-portfolio/trunk/a3-portfolio.php
r3272165 r3280779 3 3 Plugin Name: a3 Portfolio 4 4 Description: Creates a beautiful fully mobile responsive, fully customizable, Google images style portfolio to showcase your work. 5 Version: 3.2. 35 Version: 3.2.4 6 6 Author: a3rev Software 7 7 Author URI: https://a3rev.com/ … … 36 36 define( 'A3_PORTFOLIO_KEY', 'a3_portfolios' ); 37 37 define( 'A3_PORTFOLIO_PREFIX', 'a3_portfolio_' ); 38 define( 'A3_PORTFOLIO_VERSION', '3.2. 3' );38 define( 'A3_PORTFOLIO_VERSION', '3.2.4' ); 39 39 define( 'A3_PORTFOLIO_G_FONTS', true ); 40 40 -
a3-portfolio/trunk/changelog.txt
r3184715 r3280779 1 1 == Changelog == 2 3 = 3.2.4 - 2025/04/24 = 4 * This maintenance release has a bug fix plus tested for compatibility with WordPress 6.8 5 * Fix - validate first argument is array for array_merge func 6 * Tweak - Test for compatibility with WordPress 6.8 2 7 3 8 = 3.2.3 - 2024/11/09 = -
a3-portfolio/trunk/includes/frontend/class-a3-portfolio-template-loader.php
r3023262 r3280779 142 142 if ( $is_404 || ( ( isset($portfolio_query->post_count) && $portfolio_query->post_count == 0 ) && isset($portfolio_query_vars['portfolio_cat'] ) ) ) { 143 143 144 $args = array_merge($portfolio_query->query, array('posts_per_page' => $number_portfolios, 'orderby' => 'post_date' ) ); 144 $args = array( 145 'posts_per_page' => $number_portfolios, 146 'orderby' => 'post_date', 147 ); 148 if ( ! empty( $portfolio_query->query ) ) { 149 $args = array_merge( $portfolio_query->query, $args ); 150 } 145 151 146 152 $wp_query = new \WP_Query($args); -
a3-portfolio/trunk/readme.txt
r3272165 r3280779 5 5 Requires at least: 6.0 6 6 Tested up to: 6.8 7 Stable tag: 3.2. 37 Stable tag: 3.2.4 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 167 167 168 168 == Changelog == 169 170 = 3.2.4 - 2025/04/24 = 171 * This maintenance release has a bug fix plus tested for compatibility with WordPress 6.8 172 * Fix - validate first argument is array for array_merge func 173 * Tweak - Test for compatibility with WordPress 6.8 169 174 170 175 = 3.2.3 - 2024/11/09 = … … 801 806 == Upgrade Notice == 802 807 808 = 3.2.4 = 809 This maintenance release has a bug fix plus tested for compatibility with WordPress 6.8 810 803 811 = 3.2.3 = 804 812 This maintenance release contains a bug fix plus compatibility with WordPress major release version 6.7
Note: See TracChangeset
for help on using the changeset viewer.