Changeset 2471303
- Timestamp:
- 02/09/2021 05:10:45 AM (5 years ago)
- Location:
- schema-app-structured-data-for-schemaorg
- Files:
-
- 27 added
- 3 edited
-
tags/1.17.5 (added)
-
tags/1.17.5/css (added)
-
tags/1.17.5/css/schemaStyle.css (added)
-
tags/1.17.5/data (added)
-
tags/1.17.5/data/tree.jsonld (added)
-
tags/1.17.5/hunch-schema.php (added)
-
tags/1.17.5/js (added)
-
tags/1.17.5/js/schema.js (added)
-
tags/1.17.5/js/schemaAdmin.js (added)
-
tags/1.17.5/js/schemaEditor.js (added)
-
tags/1.17.5/lib (added)
-
tags/1.17.5/lib/HunchSchema (added)
-
tags/1.17.5/lib/HunchSchema/Author.php (added)
-
tags/1.17.5/lib/HunchSchema/Blog.php (added)
-
tags/1.17.5/lib/HunchSchema/Category.php (added)
-
tags/1.17.5/lib/HunchSchema/Page.php (added)
-
tags/1.17.5/lib/HunchSchema/Post.php (added)
-
tags/1.17.5/lib/HunchSchema/Search.php (added)
-
tags/1.17.5/lib/HunchSchema/Tag.php (added)
-
tags/1.17.5/lib/HunchSchema/Thing.php (added)
-
tags/1.17.5/lib/SchemaCron.php (added)
-
tags/1.17.5/lib/SchemaEditor.php (added)
-
tags/1.17.5/lib/SchemaFront.php (added)
-
tags/1.17.5/lib/SchemaServer.php (added)
-
tags/1.17.5/lib/SchemaSettings.php (added)
-
tags/1.17.5/lib/classmap.php (added)
-
tags/1.17.5/readme.txt (added)
-
trunk/hunch-schema.php (modified) (1 diff)
-
trunk/lib/SchemaFront.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
schema-app-structured-data-for-schemaorg/trunk/hunch-schema.php
r2434923 r2471303 5 5 * Plugin URI: http://www.schemaapp.com 6 6 * Description: This plugin adds http://schema.org structured data to your website 7 * Version: 1.17. 47 * Version: 1.17.5 8 8 * Author: Hunch Manifest 9 9 * Author URI: https://www.hunchmanifest.com -
schema-app-structured-data-for-schemaorg/trunk/lib/SchemaFront.php
r2434923 r2471303 85 85 public function hook_rest_api_init() { 86 86 register_rest_route( 'hunch_schema', '/cache/', array( 87 array( 'methods' => 'GET', 'callback' => array( $this, 'rest_api_cache' ) ),88 array( 'methods' => 'POST', 'callback' => array( $this, 'rest_api_cache_modify' ) ),87 array( 'methods' => 'GET', 'callback' => array( $this, 'rest_api_cache' ), 'permission_callback' => '__return_true' ), 88 array( 'methods' => 'POST', 'callback' => array( $this, 'rest_api_cache_modify' ), 'permission_callback' => '__return_true' ), 89 89 ) ); 90 90 } -
schema-app-structured-data-for-schemaorg/trunk/readme.txt
r2434923 r2471303 9 9 Requires PHP: 5.4 10 10 Tested up to: 5.6 11 Stable tag: 1.17. 411 Stable tag: 1.17.5 12 12 License: GPL2 13 13 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 88 88 == Changelog == 89 89 90 = 1.17.5 = 91 - Fix, Added required parameter permission_callback to Rest API 92 90 93 = 1.17.4 = 91 94 - Improve, Updated get permalink routine for single Page/Post … … 448 451 == Upgrade Notice == 449 452 450 = 1.17. 4=451 - Updated get permalink routine for single Page/Post, Fixed Yoast SEO meta description453 = 1.17.5 = 454 - Added required parameter permission_callback to Rest API
Note: See TracChangeset
for help on using the changeset viewer.