Changeset 2390446
- Timestamp:
- 09/29/2020 05:00:28 PM (5 years ago)
- Location:
- headless-cms/trunk
- Files:
-
- 1 added
- 8 edited
-
headless-cms.php (modified) (1 diff)
-
inc/classes/class-get-post-api.php (modified) (1 diff)
-
inc/classes/class-get-posts-api.php (modified) (1 diff)
-
inc/classes/class-header-footer-api.php (modified) (1 diff)
-
inc/classes/class-home-page-api.php (modified) (1 diff)
-
inc/classes/class-plugin.php (modified) (1 diff)
-
inc/classes/class-post-by-tax-api.php (modified) (1 diff)
-
inc/classes/class-sticky-post-type.php (added)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
headless-cms/trunk/headless-cms.php
r2339327 r2390446 8 8 * License: GPL2 9 9 * License URI: https://www.gnu.org/licenses/gpl-2.0.html 10 * Version: 1.0. 310 * Version: 1.0.4 11 11 * Text Domain: headless-cms 12 12 * -
headless-cms/trunk/inc/classes/class-get-post-api.php
r2334762 r2390446 62 62 'method' => 'GET', 63 63 'callback' => [ $this, 'rest_endpoint_handler' ], 64 'permission_callback' => '__return_true', 64 65 ] 65 66 ); -
headless-cms/trunk/inc/classes/class-get-posts-api.php
r2334762 r2390446 63 63 'method' => 'GET', 64 64 'callback' => [ $this, 'rest_endpoint_handler' ], 65 'permission_callback' => '__return_true', 65 66 ] 66 67 ); -
headless-cms/trunk/inc/classes/class-header-footer-api.php
r2333730 r2390446 66 66 'method' => 'GET', 67 67 'callback' => [ $this, 'rest_endpoint_handler' ], 68 'permission_callback' => '__return_true', 68 69 ] 69 70 ); -
headless-cms/trunk/inc/classes/class-home-page-api.php
r2333762 r2390446 72 72 'methods' => 'GET', 73 73 'callback' => [ $this, 'rest_endpoint_handler' ], 74 'permission_callback' => '__return_true', 74 75 ] 75 76 ); -
headless-cms/trunk/inc/classes/class-plugin.php
r2334762 r2390446 33 33 Settings::get_instance(); 34 34 Header_Footer_Schema::get_instance(); 35 Sticky_Post_Type::get_instance(); 35 36 36 37 } -
headless-cms/trunk/inc/classes/class-post-by-tax-api.php
r2333730 r2390446 69 69 'method' => 'GET', 70 70 'callback' => [ $this, 'rest_endpoint_handler' ], 71 'permission_callback' => '__return_true', 71 72 ] 72 73 ); -
headless-cms/trunk/readme.txt
r2334768 r2390446 3 3 Tags: headless-cms, decoupled, graphql 4 4 Requires at least: 4.6 5 Tested up to: 5. 4.25 Tested up to: 5.5.1 6 6 Stable tag: 4.9.2 7 7 Requires PHP: 5.2.4 … … 15 15 A WordPress plugin that adds following features to use WordPress as a headless CMS with any front-end environment using REST API 16 16 This plugin provides multiple features and you can use the one's that is relevant to your front-end application. You don't necessarily need to use all. 17 18 [Github-repo](https://github.com/imranhsayed/headless-cms)19 17 20 18 == Features == … … 76 74 Please check the demo of an example React front-end application, where this plugin can be used. 77 75 78 [2020-07-02] Demo .76 [2020-07-02] Demo 1. 79 77 80 78 [youtube https://youtu.be/nYXL1KKjKrc] 79 80 [2020-09-29] Demo 2. 81 82 [youtube https://youtu.be/ygaE8ZdPEX8] 81 83 82 84 = Its not working.
Note: See TracChangeset
for help on using the changeset viewer.