Display two columns on admin page
-
Hey all,
I’m trying to sort a page out in the backend so that it displys two colums, both at half the size of the screen. I found the example below, but that styles the page as if it is the Post editor, which is no good for me. Anybody know how I can achieve this at all?
add_filter('screen_layout_columns', array(&$this, 'set_custom_branding_screen_layout'), 10, 2); function set_custom_branding_screen_layout($columns, $screen) { if ($screen === $this->pagehook){ $columns[$this->pagehook] = 2; } return $columns; }
Thanks.
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Display two columns on admin page’ is closed to new replies.