Absolute path fix for wc-core-functions.php
This commit is contained in:
parent
1f9ba73b96
commit
5eaa138d21
|
@ -10,7 +10,9 @@
|
||||||
* @version 2.1.0
|
* @version 2.1.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
if ( ! defined( 'ABSPATH' ) ) {
|
||||||
|
exit; // Exit if accessed directly
|
||||||
|
}
|
||||||
|
|
||||||
// Include core functions (available in both admin and frontend)
|
// Include core functions (available in both admin and frontend)
|
||||||
include( 'wc-conditional-functions.php' );
|
include( 'wc-conditional-functions.php' );
|
||||||
|
|
Loading…
Reference in New Issue