mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
19 lines
339 B
PHP
19 lines
339 B
PHP
<?php
|
|
|
|
/**
|
|
* Displays the settings tab in Polylang settings
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Don't access directly
|
|
};
|
|
?>
|
|
<div class="form-wrap">
|
|
<?php
|
|
wp_nonce_field( 'pll_options', '_pll_nonce' );
|
|
$list_table = new PLL_Table_Settings();
|
|
$list_table->prepare_items( $this->modules );
|
|
$list_table->display();
|
|
?>
|
|
</div>
|