Plugin Directory

Changeset 3199769


Ignore:
Timestamp:
11/30/2024 08:03:15 AM (16 months ago)
Author:
pluginandplay
Message:
  • Update to version 3.2.8
  • Fix textdomain notice in WP 6.7
Location:
post-slider-and-carousel
Files:
290 added
4 edited

Legend:

Unmodified
Added
Removed
  • post-slider-and-carousel/trunk/post-slider-and-carousel.php

    r3192608 r3199769  
    33 * Plugin Name: Post Slider and Carousel with Widget
    44 * Plugin URI: https://demo.infornweb.com/post-slider-and-carousel/
    5  * Version: 3.2.7
     5 * Version: 3.2.8
    66 * Description: Posts Slider or Post Carousel add WordPress posts in slider & carousel layouts on your WordPress website. Also added Latest/Recent vertical post scrolling widget.
    77 * Text Domain: post-slider-and-carousel
     
    2828 */
    2929if( !defined( 'PSAC_VERSION' ) ) {
    30     define( 'PSAC_VERSION', '3.2.7' ); // Version of plugin
     30    define( 'PSAC_VERSION', '3.2.8' ); // Version of plugin
    3131}
    3232if( !defined( 'PSAC_DIR' ) ) {
     
    113113
    114114/**
     115 * Prior Init Processes
     116 *
     117 * @since 3.2.8
     118 */
     119function psac_init_processes() {
     120
     121    // Load Plugin Textdomain
     122    psac_load_textdomain();
     123}
     124add_action( 'init', 'psac_init_processes' );
     125
     126/**
    115127 * Function to run after all plugins have loaded
    116128 *
     
    119131 */
    120132function psac_plugins_loaded() {
    121    
    122     psac_load_textdomain();
    123            
     133
    124134    if( ! defined( 'PSAC_SCREEN_ID' ) ) {
    125135        define( 'PSAC_SCREEN_ID', sanitize_title(__('Post Slider and Carousel', 'post-slider-and-carousel')) );
  • post-slider-and-carousel/trunk/readme.txt

    r3195834 r3199769  
    55Requires PHP: 5.4
    66Tested up to: 6.7.1
    7 Stable tag: 3.2.7
     7Stable tag: 3.2.8
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    219219== Changelog ==
    220220
     221= 3.2.8 (30 Nov, 2024) =
     222* [*] Fixed translation loading notice in WordPress 6.7
     223
    221224= 3.2.7 (20 Nov, 2024) =
    222225* [*] Check compatibility with WordPress 6.7
Note: See TracChangeset for help on using the changeset viewer.