Changeset 2548775
- Timestamp:
- 06/16/2021 08:20:54 AM (5 years ago)
- Location:
- websitescanner-custom-schema/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (1 diff)
-
admin/partials/websitescanner-custom-schema-post-editor-display.php (modified) (2 diffs)
-
websitescanner-custom-schema.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
websitescanner-custom-schema/trunk/README.txt
r2486204 r2548775 5 5 Requires at least: 3.0.1 6 6 Tested up to: 5.7 7 Stable tag: trunk7 Stable tag: 1.3.4 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
websitescanner-custom-schema/trunk/admin/partials/websitescanner-custom-schema-post-editor-display.php
r2214917 r2548775 95 95 </p><br> 96 96 97 <textarea name="<?php echo $this->plugin_name; ?>[custom_schema_0]" data-id="0" id="webs-custom-schema-0" class="webs-custom-schema widefat" cols="50" rows="5"><?php if (isset($custom_schema_0)){ echo prettyPrint(wp_unslash(json_decode($custom_schema_0)));} ?></textarea>97 <textarea name="<?php echo esc_attr($this->plugin_name); ?>[custom_schema_0]" data-id="0" id="webs-custom-schema-0" class="webs-custom-schema widefat" cols="50" rows="5"><?php if (isset($custom_schema_0)){ echo prettyPrint(wp_unslash(json_decode($custom_schema_0)));} ?></textarea> 98 98 <label for="webs-custom-schema-0" class="webs-custom-schema-error" id="webs-custom-schema-errors-0" class=""><?php esc_attr_e('Unchanged', $this->plugin_name); ?></label></br><br> 99 99 … … 104 104 <?php } ?> 105 105 <span class="webs-schema-1 <?php if(!$custom_schema_1 && !$custom_schema_2){echo "hidden";}?>"> 106 <textarea name="<?php echo $this->plugin_name; ?>[custom_schema_1]" data-id="1" id="webs-custom-schema-1" class="webs-custom-schema widefat" cols="50" rows="5"><?php if (isset($custom_schema_1)){echo prettyPrint(wp_unslash(json_decode($custom_schema_1)));} ?></textarea>106 <textarea name="<?php echo esc_attr($this->plugin_name); ?>[custom_schema_1]" data-id="1" id="webs-custom-schema-1" class="webs-custom-schema widefat" cols="50" rows="5"><?php if (isset($custom_schema_1)){echo prettyPrint(wp_unslash(json_decode($custom_schema_1)));} ?></textarea> 107 107 <span class="webs-custom-schema-error" id="webs-custom-schema-errors-1" class=""><?php esc_attr_e('Unchanged', $this->plugin_name); ?></span></br><br> 108 108 </span> 109 109 <span class="webs-schema-2 <?php if(!$custom_schema_1 && !$custom_schema_2){echo "hidden";}?>"> 110 <textarea name="<?php echo $this->plugin_name; ?>[custom_schema_2]" data-id="2" id="webs-custom-schema-2" class="webs-custom-schema widefat" cols="50" rows="5"><?php if (isset($custom_schema_2)){echo prettyPrint(wp_unslash(json_decode($custom_schema_2)));} ?></textarea>110 <textarea name="<?php echo esc_attr($this->plugin_name); ?>[custom_schema_2]" data-id="2" id="webs-custom-schema-2" class="webs-custom-schema widefat" cols="50" rows="5"><?php if (isset($custom_schema_2)){echo prettyPrint(wp_unslash(json_decode($custom_schema_2)));} ?></textarea> 111 111 <span class="webs-custom-schema-error" id="webs-custom-schema-errors-2" class=""><?php esc_attr_e('Unchanged', $this->plugin_name); ?></span></br><br> 112 112 </span> -
websitescanner-custom-schema/trunk/websitescanner-custom-schema.php
r2548573 r2548775 17 17 * Plugin URI: https://plugin.nl/en/websitescanner-custom-schema-plugin/ 18 18 * Description: Adds a field to the editor for custom JSON-ld schema markup. 19 * Version: 1.3. 319 * Version: 1.3.4 20 20 * Author: Plugin.nl 21 21 * Author URI: https://plugin.nl/en/ … … 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define( 'WEBSITESCANNER_CUSTOM_SCHEMA_VERSION', '1.3. 3' );38 define( 'WEBSITESCANNER_CUSTOM_SCHEMA_VERSION', '1.3.4' ); 39 39 /** 40 40 * The core plugin class that is used to define internationalization,
Note: See TracChangeset
for help on using the changeset viewer.