Add phpdoc for two WP_Screen methods. props jorbin, see #18785.
git-svn-id: https://develop.svn.wordpress.org/trunk@18863 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
b59e63f01f
commit
da55be56a6
@ -801,6 +801,11 @@ final class WP_Screen {
|
||||
<?php
|
||||
}
|
||||
|
||||
/**
|
||||
* Render the option for number of columns on the page
|
||||
*
|
||||
* @since 3.3.0
|
||||
*/
|
||||
function render_screen_layout() {
|
||||
global $screen_layout_columns;
|
||||
|
||||
@ -847,6 +852,11 @@ final class WP_Screen {
|
||||
<?php
|
||||
}
|
||||
|
||||
/**
|
||||
* Render the items per page option
|
||||
*
|
||||
* @since 3.3.0
|
||||
*/
|
||||
function render_per_page_options() {
|
||||
if ( ! isset( $this->_options['per_page'] ) )
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user