| Server IP : 95.171.21.124 / Your IP : 216.73.216.71 Web Server : Apache/2.4.66 (Ubuntu) mod_fcgid/2.3.9 OpenSSL/3.0.2 System : Linux tr.turqaestate.com 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64 User : turqa ( 1005) PHP Version : 8.3.30 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,exec,system,passthru,shell_exec,proc_open,popen MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/turqa/web/turqaestate.com/public_html/wp-content/plugins/wps-cleaner/blocks/ |
Upload File : |
<?php
// don't load directly
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}
$total_term_relationships = \WPS\WPS_Cleaner\Helpers::total_count( 'term_relationships' );
$total_term_taxonomy = \WPS\WPS_Cleaner\Helpers::total_count( 'term_taxonomy' );
$total_terms = \WPS\WPS_Cleaner\Helpers::total_count( 'terms' );
$total_termmeta = \WPS\WPS_Cleaner\Helpers::total_count( 'termmeta' );
$orphan_term_relationships = \WPS\WPS_Cleaner\Helpers::count_cleanup_items( 'orphan_term_relationships' );
$unused_terms = \WPS\WPS_Cleaner\Helpers::count_cleanup_items( 'unused_terms' );
$orphan_termmeta = \WPS\WPS_Cleaner\Helpers::count_cleanup_items( 'orphan_termmeta' );
$duplicated_termmeta = \WPS\WPS_Cleaner\Helpers::count_cleanup_items( 'duplicated_termmeta' ); ?>
<h2><?php _e( 'Terms', 'wps-cleaner' ) ?></h2>
<p><?php _e( 'Taxonomy: how to group posts (ex: Category).', 'wps-cleaner' ); ?><br />
<?php _e( 'Terms: group of a taxonomy (ex: Not classified).', 'wps-cleaner' ); ?></p>
<p class="wps-italic"><?php _e( 'This will clean up the terms of the database.', 'wps-cleaner' ); ?></p>
<div class="wps-list-tools">
<table>
<thead class="wps_text_found">
<th><?php echo sprintf( __('Total found: %s Terms, %s Term Meta, %s Term Taxonomy and %s Term Relationships.', 'wps-cleaner' ), number_format_i18n( $total_terms ), number_format_i18n( $total_termmeta ), number_format_i18n( $total_term_taxonomy ), number_format_i18n( $total_term_relationships ) ); ?></th>
<th>Action</th>
</thead>
<tbody>
<tr>
<th class="wps-desc-tool">
<strong class="name"><?php _e( 'Orphaned Term Meta', 'wps-cleaner' ); ?></strong>
<p class="description">
<strong>Note : </strong> <?php _e( 'This tool will clean up ALL Orphaned Term Meta from WordPress.', 'wps-cleaner' ); ?>
</p>
</th>
<td class="run-tool">
<a href="#" class="button btn-wps clear_sessions wps-clean" data-action="clear_orphan_termmeta" data-nonce="<?php echo wp_create_nonce( 'clear_orphan_termmeta' ); ?>"><span class="text"><?php _e( 'Clear Orphaned Term Meta', 'wps-cleaner' ); ?></span>
<span class="count">(<?php echo $orphan_termmeta; ?>)</span></a>
</td>
</tr>
<tr>
<th class="wps-desc-tool">
<strong class="name"><?php _e( 'Unused term', 'wps-cleaner' ); ?></strong>
<p class="description">
<strong>Note : </strong> <?php _e( 'This tool will clean up ALL Unused terms from WordPress.', 'wps-cleaner' ); ?>
</p>
</th>
<td class="run-tool">
<a href="#" class="button btn-wps clear_sessions wps-clean" data-action="clear_unused_terms" data-nonce="<?php echo wp_create_nonce( 'clear_unused_terms' ); ?>"><span class="text"><?php _e( 'Clear Unused terms', 'wps-cleaner' ); ?></span>
<span class="count">(<?php echo $unused_terms; ?>)</span></a>
</td>
</tr>
<tr>
<th class="wps-desc-tool">
<strong class="name"><?php _e( 'Duplicated Term Meta', 'wps-cleaner' ); ?></strong>
<p class="description">
<strong>Note : </strong> <?php _e( 'This tool will clean up ALL Duplicated Term Meta from WordPress.', 'wps-cleaner' ); ?>
</p>
</th>
<td class="run-tool">
<a href="#" class="button btn-wps clear_sessions wps-clean" data-action="clear_duplicated_termmeta" data-nonce="<?php echo wp_create_nonce( 'clear_duplicated_termmeta' ); ?>"><span class="text"><?php _e( 'Clear Duplicated Term Meta', 'wps-cleaner' ); ?></span>
<span class="count">(<?php echo $duplicated_termmeta; ?>)</span></a>
</td>
</tr>
<tr>
<th class="wps-desc-tool">
<strong class="name"><?php _e( 'Orphaned Term Relationship', 'wps-cleaner' ); ?></strong>
<p class="description">
<strong>Note : </strong> <?php _e( 'This tool will clean up ALL Orphaned Term Relationship from WordPress.', 'wps-cleaner' ); ?>
</p>
</th>
<td class="run-tool">
<a href="#" class="button btn-wps clear_sessions wps-clean" data-action="clear_orphaned_term_relationship" data-nonce="<?php echo wp_create_nonce( 'clear_orphaned_term_relationship' ); ?>"><span class="text"><?php _e( 'Clear Orphaned Term Relationship', 'wps-cleaner' ); ?></span>
<span class="count">(<?php echo $orphan_term_relationships; ?>)</span></a>
</td>
</tr>
</tbody>
</table>
</div>