Changeset 2322325
- Timestamp:
- 06/11/2020 01:57:20 PM (6 years ago)
- Location:
- extend-acf-acf-json-directory/trunk
- Files:
-
- 2 edited
-
extend-acf-acf-json-local-folder.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
extend-acf-acf-json-directory/trunk/extend-acf-acf-json-local-folder.php
r2322317 r2322325 3 3 * Plugin Name: Extend ACF acf-json directory 4 4 * Description: Extends ACF to save the json-files in the plugin directory instead of the theme or child theme directory 5 * Plugin URI: https://poly-res.com/plugins/extend-acf-acf-json-local- folder5 * Plugin URI: https://poly-res.com/plugins/extend-acf-acf-json-local-directory 6 6 * Version: 1.0.1 7 7 * Domain Path: /languages 8 8 * Author: polyres 9 9 * Author URI: https://poly-res.com/ 10 * Text Domain: extend-acf-acf-json-local- folder10 * Text Domain: extend-acf-acf-json-local-directory 11 11 * License: GPL-2.0+ 12 12 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt 13 * GitHub Plugin URI: https://github.com/PolyRes/extend-acf-acf-json-local-folder14 * GitHub Branch: master15 13 * Requires WP: 4.8 16 14 * Requires PHP: 5.6 17 * Tested up to: 5. 3.215 * Tested up to: 5.4.2 18 16 * 19 17 * @link https://poly-res.com … … 40 38 'plugins_loaded', 41 39 function() { 42 load_plugin_textdomain( 'extend-acf-acf-json-local- folder', false, plugin_basename( dirname( __FILE__ ) ) . '/languages' );40 load_plugin_textdomain( 'extend-acf-acf-json-local-directory', false, plugin_basename( dirname( __FILE__ ) ) . '/languages' ); 43 41 } 44 42 ); … … 52 50 */ 53 51 function polyres_ext_acf_json_admin_notices() { 54 echo '<div class="error"><p>' . esc_html__( 'Extend ACF acf-json directory needs Advanced Custom Fields to work', 'extend-acf-acf-json-local- folder' ) . '</p></div>';52 echo '<div class="error"><p>' . esc_html__( 'Extend ACF acf-json directory needs Advanced Custom Fields to work', 'extend-acf-acf-json-local-directory' ) . '</p></div>'; 55 53 } 56 54 add_action( 'admin_notices', 'polyres_ext_acf_json_admin_notices' ); -
extend-acf-acf-json-directory/trunk/readme.txt
r2322317 r2322325 3 3 Tags: acf, json, acf-json 4 4 Requires at least: 4.8 5 Tested up to: 5. 3.25 Tested up to: 5.4.2 6 6 Stable tag: 1.0.1 7 7 License: GPLv2
Note: See TracChangeset
for help on using the changeset viewer.