This allows to change filename, layout, pagination and other stuff for the DKPF plugin. //PDF…
How to detect certain admin pages in WordPress
//this will print the current screen data in the source code
add_action('current_screen', 'detecting_current_screen');
function detecting_current_screen() {
$current_screen = get_current_screen();
print_r($current_screen);
}
Dieser Beitrag hat 0 Kommentare