PluginProbe
School Management System – WPSchoolPress / 2.2.43
School Management System – WPSchoolPress v2.2.43
2.2.48 2.2.47 2.2.46 2.2.45 2.2.44 2.2.43 2.2.42 2.2.41 2.2.40 2.2.39 2.2.38 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 2.0.0 2.0.1 2.0.10 2.0.11 2.0.12 2.0.13 All 103 releases
wpschoolpress / lib / wpsp-admin-addons.php

wpsp-admin-addons.php in School Management System – WPSchoolPress 2.2.43, at lib/wpsp-admin-addons.php

19 lines 790 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 // Exit if accessed directly
3 if ( ! defined( 'ABSPATH' ) ) exit;
4 ?>
5 <div id="wpbody">
6 <div aria-label="Main content" tabindex="0" class="addon-page">
7 <div class="wrap">
8 <h1><?php esc_html_e("WPSchoolpress Add-Ons", "wpschoolpress");?></h1>
9 <div class="container">
10 <div class="wpsp-row">
11 <?php $member_detail = wp_remote_get('https://wpschoolpress.com/wp-json/api/v1/addons/');
12 $team_details = json_decode(wp_remote_retrieve_body($member_detail));
13 echo esc_html($team_details->message);
14 ?>
15 </div>
16 </div><!-- dashboard-widgets-wrap -->
17 </div><!-- wrap -->
18 </div><!-- wpbody-content -->
19 </div>