|
Server : Apache System : Linux s1230 5.15.0-139-generic #149~20.04.1 SMP Tue Jul 14 11:21:49 UTC 2026 x86_64 User : p141464 ( 418825) PHP Version : 7.4.33.12 Disable Function : NONE Directory : /html/wordpress-old/wp-content/plugins/wordpress-post-tabs/ |
Upload File : |
<?php
/**
* Bootstrap file for getting the ABSPATH constant to wp-load.php
* This is requried when a plugin requires access not via the admin screen.
*
* If the wp-load.php file is not found, then an error will be displayed
*
* @package WordPress
* @since Version 2.6
*/
/** Define the server path to the file wp-config here, if you placed WP-CONTENT outside the classic file structure */
$path = ''; // It should be end with a trailing slash
/** That's all, stop editing from here **/
if ( !defined('WP_LOAD_PATH') ) {
/** classic root path if wp-content and plugins is below wp-config.php */
$classic_root = dirname(dirname(dirname(dirname(__FILE__)))) . '/' ;
if (file_exists( $classic_root . 'wp-load.php') )
define( 'WP_LOAD_PATH', $classic_root);
else
if (file_exists( $path . 'wp-load.php') )
define( 'WP_LOAD_PATH', $path);
else
exit("Could not find wp-load.php");
}
// let's load WordPress
require_once( WP_LOAD_PATH . 'wp-load.php');