Plugin Directory

Changeset 3354185


Ignore:
Timestamp:
09/01/2025 06:05:24 PM (7 months ago)
Author:
kovalchik8
Message:

Fixed Polylang adapter wrong key on get_terms (name instead of slug)

Location:
magic-export-import
Files:
58 added
3 edited

Legend:

Unmodified
Added
Removed
  • magic-export-import/trunk/class-magic-ex-im-setup.php

    r3352098 r3354185  
    33 * Plugin Name: Magic Export & Import
    44 * Description: The ultimate tool to migrate any content including posts, terms, users, comments, WooCommerce shop orders, menus and ACF Options pages.
    5  * Version: 1.1.2
     5 * Version: 1.1.3
    66 * Requires at least: 6.2
    77 * Requires PHP: 7.4
  • magic-export-import/trunk/includes/plugin-adapters/class-magic-ex-im-adapter-polylang.php

    r3349173 r3354185  
    585585                        $term_translations[ $lang_code ] = get_terms(
    586586                            array(
    587                                 'name'       => $term_slug,
     587                                'slug'       => $term_slug,
    588588                                'taxonomy'   => magic_ex_im_get_magic_item(),
    589589                                'hide_empty' => false,
  • magic-export-import/trunk/readme.txt

    r3352098 r3354185  
    44Tags: export, import, content migration, csv, custom fields
    55Tested up to: 6.8
    6 Stable tag: 1.1.2
     6Stable tag: 1.1.3
    77License: GPL v3 or later
    88License URI: https://www.gnu.org/licenses/gpl-3.0.txt
     
    7979== Changelog ==
    8080
     81= 1.1.3 =
     82* Fixed Polylang adapter wrong key on get_terms (name instead of slug)
     83
    8184= 1.1.2 =
    8285* Fixed wrong media URLs detection within background inline styles
Note: See TracChangeset for help on using the changeset viewer.