Merge pull request #10070 from woothemes/SiR-DanieL-patch-1

Add DISABLE_WP_CRON to the system status
This commit is contained in:
Claudio Sanches 2016-01-21 19:34:30 -02:00
commit 544d7fb8c2
1 changed files with 5 additions and 0 deletions

View File

@ -83,6 +83,11 @@ if ( ! defined( 'ABSPATH' ) ) {
<td class="help"><?php echo wc_help_tip( __( 'Displays whether or not WordPress is in Debug Mode.', 'woocommerce' ) ); ?></td>
<td><?php if ( defined('WP_DEBUG') && WP_DEBUG ) echo '<mark class="yes">&#10004;</mark>'; else echo '<mark class="no">&ndash;</mark>'; ?></td>
</tr>
<tr>
<td data-export-label="WP Cron"><?php _e( 'WP Cron', 'woocommerce' ); ?>:</td>
<td class="help"><?php echo wc_help_tip( __( 'Displays whether or not WP Cron Jobs are enabled.', 'woocommerce' ) ); ?></td>
<td><?php if ( defined('DISABLE_WP_CRON') && DISABLE_WP_CRON ) echo '<mark class="no">&ndash;</mark>'; else echo '<mark class="yes">&#10004;</mark>'; ?></td>
</tr>
<tr>
<td data-export-label="Language"><?php _e( 'Language', 'woocommerce' ); ?>:</td>
<td class="help"><?php echo wc_help_tip( __( 'The current language used by WordPress. Default = English', 'woocommerce' ) ); ?></td>