Add phpdoc for two WP_Screen methods. props jorbin, see #18785.

git-svn-id: http://svn.automattic.com/wordpress/trunk@18863 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2011-10-02 00:04:30 +00:00
parent 9662f2f87e
commit f626113f33
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;