PluginProbe
Search & Replace Everything by WPCode – Find and Replace Media, Text, Links, and More / 1.0.8
Search & Replace Everything by WPCode – Find and Replace Media, Text, Links, and More v1.0.8
trunk 1.0.0 1.0.1 1.0.10 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9
search-replace-wpcode / includes / lite / loader.php

loader.php in Search & Replace Everything by WPCode – Find and Replace Media, Text, Links, and More 1.0.8, at includes/lite/loader.php

18 lines 414 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * File used for importing lite-only files.
4 *
5 * @package Search_Replace_WPCode
6 */
7
8 if ( ! defined( 'ABSPATH' ) ) {
9 exit;
10 }
11
12 if ( is_admin() || wp_doing_ajax() || defined( 'DOING_CRON' ) && DOING_CRON ) {
13 // Connect to upgrade.
14 require_once WSRW_PLUGIN_PATH . 'includes/lite/admin/class-wsrw-connect.php';
15 // Load lite notices.
16 require_once WSRW_PLUGIN_PATH . 'includes/lite/admin/notices.php';
17 }
18