Absolute path fix for class-wc-query.php

This commit is contained in:
shivapoudel 2014-09-21 00:43:54 +05:45
parent 1f4db18e7f
commit 922e74e984
1 changed files with 3 additions and 1 deletions

View File

@ -9,7 +9,9 @@
* @author WooThemes
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
if ( ! class_exists( 'WC_Query' ) ) :