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:
Andrew Nacin 2011-10-02 00:04:30 +00:00
parent b59e63f01f
commit da55be56a6
1 changed files with 10 additions and 0 deletions

View File

@ -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;