PluginProbe
WP Ultimate Post Grid / 2.4.0
WP Ultimate Post Grid v2.4.0
4.1.1 trunk 1.5 1.6 1.7 1.7.1 1.7.2 1.8 1.9 2.0 2.1 2.2 2.3 2.4.0 2.5.0 2.6.0 2.7.0 2.8.0 2.8.2 3.0.0 3.3.0 3.4.0 3.5.0 3.6.0 3.7.0 All 32 releases
wp-ultimate-post-grid / helpers / ajax.php

ajax.php in WP Ultimate Post Grid 2.4.0, at helpers/ajax.php

23 lines 546 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 class WPUPG_Ajax {
4
5 public function __construct()
6 {
7 }
8
9 public function url()
10 {
11 $scheme = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443) ? 'https' : 'http';
12 $ajaxurl = admin_url( 'admin-ajax.php', $scheme );
13 $ajaxurl .= '?wpupg_ajax=1';
14
15 // WPML AJAX Localization Fix
16 global $sitepress;
17 if( isset( $sitepress) ) {
18 $ajaxurl .= '&lang='.$sitepress->get_current_language();
19 }
20
21 return $ajaxurl;
22 }
23 }