This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Javascript added in admin screens | |
| * 1. Enable the "Minor edit - dont'update translation" by WPML checkbox by default on post editing screen | |
| * | |
| * @return void | |
| * @author mohsinrasool | |
| **/ | |
| add_action('admin_footer', 'mr_admin_footer'); | |
| function mr_admin_footer() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * This script adds a bulk action on post listing screen. When applied, it updates the slugs of selected translations with | |
| * the slugs of corresponding english translations. Whole idea is to have same slugs for every translation with only difference | |
| * of /language. For example | |
| * /test | |
| * /fr/test | |
| * /de/test | |
| * | |
| * @author mohsinrasool | |
| */ |
NewerOlder