Changeset 3431168
- Timestamp:
- 01/02/2026 05:28:17 PM (7 weeks ago)
- Location:
- yaml-custom-fields/trunk
- Files:
-
- 1 deleted
- 15 edited
-
assets/icon-256x256.png (deleted)
-
readme.txt (modified) (2 diffs)
-
templates/admin-page.php (modified) (1 diff)
-
templates/data-objects-page.php (modified) (1 diff)
-
templates/data-validation-page.php (modified) (1 diff)
-
templates/docs-page.php (modified) (1 diff)
-
templates/edit-data-object-type-page.php (modified) (1 diff)
-
templates/edit-global-schema-page.php (modified) (1 diff)
-
templates/edit-partial-page.php (modified) (1 diff)
-
templates/edit-schema-page.php (modified) (1 diff)
-
templates/edit-template-global-schema-page.php (modified) (1 diff)
-
templates/export-data-page.php (modified) (1 diff)
-
templates/manage-data-object-entries-page.php (modified) (1 diff)
-
templates/manage-global-data-page.php (modified) (1 diff)
-
templates/manage-template-global-data-page.php (modified) (1 diff)
-
yaml-custom-fields.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
yaml-custom-fields/trunk/readme.txt
r3431143 r3431168 5 5 Tested up to: 6.9 6 6 Requires PHP: 8.1 7 Stable tag: 1.2. 47 Stable tag: 1.2.3 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 146 146 147 147 == Changelog == 148 149 = 1.2.4 =150 * **FIX: Admin Icon Display** - Moved plugin icon to assets directory and updated template references for proper display in admin interface151 148 152 149 = 1.2.3 = -
yaml-custom-fields/trunk/templates/admin-page.php
r3431140 r3431168 14 14 <div class="yaml-cf-header"> 15 15 <div class="yaml-cf-header-content"> 16 <img src="<?php echo esc_url(YAML_CF_PLUGIN_URL . ' assets/icon-256x256.png'); ?>" alt="YAML Custom Fields" class="yaml-cf-logo" />16 <img src="<?php echo esc_url(YAML_CF_PLUGIN_URL . 'icon-256x256.png'); ?>" alt="YAML Custom Fields" class="yaml-cf-logo" /> 17 17 <div class="yaml-cf-header-text"> 18 18 <h1><?php echo esc_html(get_admin_page_title()); ?></h1> -
yaml-custom-fields/trunk/templates/data-objects-page.php
r3431140 r3431168 33 33 <div class="yaml-cf-header"> 34 34 <div class="yaml-cf-header-content"> 35 <img src="<?php echo esc_url(YAML_CF_PLUGIN_URL . ' assets/icon-256x256.png'); ?>" alt="YAML Custom Fields" class="yaml-cf-logo" />35 <img src="<?php echo esc_url(YAML_CF_PLUGIN_URL . 'icon-256x256.png'); ?>" alt="YAML Custom Fields" class="yaml-cf-logo" /> 36 36 <div class="yaml-cf-header-text"> 37 37 <h1><?php esc_html_e('Data Objects', 'yaml-custom-fields'); ?></h1> -
yaml-custom-fields/trunk/templates/data-validation-page.php
r3431140 r3431168 19 19 <div class="yaml-cf-header"> 20 20 <div class="yaml-cf-header-content"> 21 <img src="<?php echo esc_url(YAML_CF_PLUGIN_URL . ' assets/icon-256x256.png'); ?>" alt="YAML Custom Fields" class="yaml-cf-logo" />21 <img src="<?php echo esc_url(YAML_CF_PLUGIN_URL . 'icon-256x256.png'); ?>" alt="YAML Custom Fields" class="yaml-cf-logo" /> 22 22 <div class="yaml-cf-header-text"> 23 23 <h1><?php esc_html_e('Data Validation', 'yaml-custom-fields'); ?></h1> -
yaml-custom-fields/trunk/templates/docs-page.php
r3431140 r3431168 14 14 <div class="yaml-cf-header"> 15 15 <div class="yaml-cf-header-content"> 16 <img src="<?php echo esc_url(YAML_CF_PLUGIN_URL . ' assets/icon-256x256.png'); ?>" alt="YAML Custom Fields" class="yaml-cf-logo" />16 <img src="<?php echo esc_url(YAML_CF_PLUGIN_URL . 'icon-256x256.png'); ?>" alt="YAML Custom Fields" class="yaml-cf-logo" /> 17 17 <div class="yaml-cf-header-text"> 18 18 <h1><?php esc_html_e('Documentation', 'yaml-custom-fields'); ?></h1> -
yaml-custom-fields/trunk/templates/edit-data-object-type-page.php
r3431140 r3431168 41 41 <div class="yaml-cf-header"> 42 42 <div class="yaml-cf-header-content"> 43 <img src="<?php echo esc_url(YAML_CF_PLUGIN_URL . ' assets/icon-256x256.png'); ?>" alt="YAML Custom Fields" class="yaml-cf-logo" />43 <img src="<?php echo esc_url(YAML_CF_PLUGIN_URL . 'icon-256x256.png'); ?>" alt="YAML Custom Fields" class="yaml-cf-logo" /> 44 44 <div class="yaml-cf-header-text"> 45 45 <h1><?php echo $yaml_cf_is_editing ? esc_html($yaml_cf_type_name) : esc_html__('New Data Object Type', 'yaml-custom-fields'); ?></h1> -
yaml-custom-fields/trunk/templates/edit-global-schema-page.php
r3431140 r3431168 14 14 <div class="yaml-cf-header"> 15 15 <div class="yaml-cf-header-content"> 16 <img src="<?php echo esc_url(YAML_CF_PLUGIN_URL . ' assets/icon-256x256.png'); ?>" alt="YAML Custom Fields" class="yaml-cf-logo" />16 <img src="<?php echo esc_url(YAML_CF_PLUGIN_URL . 'icon-256x256.png'); ?>" alt="YAML Custom Fields" class="yaml-cf-logo" /> 17 17 <div class="yaml-cf-header-text"> 18 18 <h1><?php esc_html_e('Global Schema', 'yaml-custom-fields'); ?></h1> -
yaml-custom-fields/trunk/templates/edit-partial-page.php
r3431140 r3431168 14 14 <div class="yaml-cf-header"> 15 15 <div class="yaml-cf-header-content"> 16 <img src="<?php echo esc_url(YAML_CF_PLUGIN_URL . ' assets/icon-256x256.png'); ?>" alt="YAML Custom Fields" class="yaml-cf-logo" />16 <img src="<?php echo esc_url(YAML_CF_PLUGIN_URL . 'icon-256x256.png'); ?>" alt="YAML Custom Fields" class="yaml-cf-logo" /> 17 17 <div class="yaml-cf-header-text"> 18 18 <h1><?php echo esc_html($template_name); ?></h1> -
yaml-custom-fields/trunk/templates/edit-schema-page.php
r3431140 r3431168 14 14 <div class="yaml-cf-header"> 15 15 <div class="yaml-cf-header-content"> 16 <img src="<?php echo esc_url(YAML_CF_PLUGIN_URL . ' assets/icon-256x256.png'); ?>" alt="YAML Custom Fields" class="yaml-cf-logo" />16 <img src="<?php echo esc_url(YAML_CF_PLUGIN_URL . 'icon-256x256.png'); ?>" alt="YAML Custom Fields" class="yaml-cf-logo" /> 17 17 <div class="yaml-cf-header-text"> 18 18 <h1><?php echo esc_html($template_name); ?></h1> -
yaml-custom-fields/trunk/templates/edit-template-global-schema-page.php
r3431140 r3431168 14 14 <div class="yaml-cf-header"> 15 15 <div class="yaml-cf-header-content"> 16 <img src="<?php echo esc_url(YAML_CF_PLUGIN_URL . ' assets/icon-256x256.png'); ?>" alt="YAML Custom Fields" class="yaml-cf-logo" />16 <img src="<?php echo esc_url(YAML_CF_PLUGIN_URL . 'icon-256x256.png'); ?>" alt="YAML Custom Fields" class="yaml-cf-logo" /> 17 17 <div class="yaml-cf-header-text"> 18 18 <h1><?php echo esc_html($template_name); ?></h1> -
yaml-custom-fields/trunk/templates/export-data-page.php
r3431140 r3431168 13 13 <div class="yaml-cf-header"> 14 14 <div class="yaml-cf-header-content"> 15 <img src="<?php echo esc_url(YAML_CF_PLUGIN_URL . ' assets/icon-256x256.png'); ?>" alt="YAML Custom Fields" class="yaml-cf-logo" />15 <img src="<?php echo esc_url(YAML_CF_PLUGIN_URL . 'icon-256x256.png'); ?>" alt="YAML Custom Fields" class="yaml-cf-logo" /> 16 16 <div class="yaml-cf-header-text"> 17 17 <h1><?php esc_html_e('Export & Import', 'yaml-custom-fields'); ?></h1> -
yaml-custom-fields/trunk/templates/manage-data-object-entries-page.php
r3431140 r3431168 81 81 <div class="yaml-cf-header"> 82 82 <div class="yaml-cf-header-content"> 83 <img src="<?php echo esc_url(YAML_CF_PLUGIN_URL . ' assets/icon-256x256.png'); ?>" alt="YAML Custom Fields" class="yaml-cf-logo" />83 <img src="<?php echo esc_url(YAML_CF_PLUGIN_URL . 'icon-256x256.png'); ?>" alt="YAML Custom Fields" class="yaml-cf-logo" /> 84 84 <div class="yaml-cf-header-text"> 85 85 <h1><?php echo esc_html($yaml_cf_type_name); ?></h1> -
yaml-custom-fields/trunk/templates/manage-global-data-page.php
r3431140 r3431168 14 14 <div class="yaml-cf-header"> 15 15 <div class="yaml-cf-header-content"> 16 <img src="<?php echo esc_url(YAML_CF_PLUGIN_URL . ' assets/icon-256x256.png'); ?>" alt="YAML Custom Fields" class="yaml-cf-logo" />16 <img src="<?php echo esc_url(YAML_CF_PLUGIN_URL . 'icon-256x256.png'); ?>" alt="YAML Custom Fields" class="yaml-cf-logo" /> 17 17 <div class="yaml-cf-header-text"> 18 18 <h1><?php esc_html_e('Global Data', 'yaml-custom-fields'); ?></h1> -
yaml-custom-fields/trunk/templates/manage-template-global-data-page.php
r3431140 r3431168 14 14 <div class="yaml-cf-header"> 15 15 <div class="yaml-cf-header-content"> 16 <img src="<?php echo esc_url(YAML_CF_PLUGIN_URL . ' assets/icon-256x256.png'); ?>" alt="YAML Custom Fields" class="yaml-cf-logo" />16 <img src="<?php echo esc_url(YAML_CF_PLUGIN_URL . 'icon-256x256.png'); ?>" alt="YAML Custom Fields" class="yaml-cf-logo" /> 17 17 <div class="yaml-cf-header-text"> 18 18 <h1><?php esc_html_e('Manage Template Global Data', 'yaml-custom-fields'); ?></h1> -
yaml-custom-fields/trunk/yaml-custom-fields.php
r3431143 r3431168 4 4 * Plugin URI: https://github.com/maliMirkec/yaml-custom-fields 5 5 * Description: A WordPress plugin for managing YAML frontmatter schemas in theme templates 6 * Version: 1.2. 46 * Version: 1.2.3 7 7 * Author: Silvestar Bistrović 8 8 * Author URI: https://www.silvestar.codes
Note: See TracChangeset
for help on using the changeset viewer.