This repository has been archived on 2024-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
affiliateimporteral/screenoptions.php
2018-01-12 14:30:22 +07:00

21 lines
339 B
PHP

<?php
add_action('load-aeimporter_page_aeidn-add', function () {
$option = 'columns';
$args = array(
'label' => ''
);
add_screen_option($option, $args);
});
add_action('load-aeimporter_page_aeidn-stats', function () {
$option = 'columns';
$args = array(
'label' => ''
);
add_screen_option($option, $args);
});