Changeset 2508624
- Timestamp:
- 04/03/2021 12:15:43 PM (5 years ago)
- Location:
- rest-routes/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (1 diff)
-
rest-routes.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rest-routes/trunk/readme.txt
r2500503 r2508624 84 84 == Changelog == 85 85 86 = 4.13.0 = 87 88 - FREE/PRO: Fixed problem with malformed strings in endpoint 89 - FREE/PRO: Fixed problem with fixed filter values 90 - FREE/PRO: Fixed problem with the URL of fresh custom endpoints when saving 91 - FREE/PRO: Fixed bug in the enqueuing of Rest Routes scripts 92 - FREE/PRO: Fixed bug in the Save button on RTL 93 - PRO: Added filter for changing the custom table database 94 - PRO: Added parent fields as output options 95 86 96 = 4.12.0 = 87 97 -
rest-routes/trunk/rest-routes.php
r2500503 r2508624 2 2 3 3 /* 4 Plugin Name: Rest Routes 4 Plugin Name: Rest Routes – Custom Endpoints for WP REST API 5 5 Plugin URI: https://www.restroutes.com 6 6 Description: Extend the WP REST API by creating unlimited advanced custom routes for your site. 7 Author: Rest Routes – Custom Endpoints for WP REST API7 Author: Rest Routes 8 8 Author URI: https://www.restroutes.com 9 Version: 4.1 2.09 Version: 4.13.0 10 10 */ 11 11 if ( !defined( 'ABSPATH' ) ) { … … 16 16 rrp_fs()->set_basename( false, __FILE__ ); 17 17 } else { 18 18 19 19 if ( !function_exists( 'rrp_fs' ) ) { 20 20 // Create a helper function for easy SDK access. … … 22 22 { 23 23 global $rrp_fs ; 24 24 25 25 if ( !isset( $rrp_fs ) ) { 26 26 // Include Freemius SDK. … … 43 43 ) ); 44 44 } 45 45 46 46 return $rrp_fs; 47 47 } 48 48 49 49 // Init Freemius. 50 50 rrp_fs(); … … 52 52 do_action( 'rrp_fs_loaded' ); 53 53 } 54 54 55 55 $rest_routes_url = untrailingslashit( plugin_dir_url( __FILE__ ) ); 56 56 define( 'REST_ROUTES_PLUGIN_PATH', __DIR__ );
Note: See TracChangeset
for help on using the changeset viewer.