Make WordPress Core

Ticket #18785: 18785.patch

File 18785.patch, 611 bytes (added by jorbin, 14 years ago)

Document two undocumented functions

  • wp-admin/includes/screen.php

     
    797797                <?php
    798798        }
    799799
     800        /**
     801         * Render the option for number of Columns on the page
     802         *
     803         * @since 3.3.0
     804         */
    800805        function render_screen_layout() {
    801806                global $screen_layout_columns;
    802807
     
    843848                <?php
    844849        }
    845850
     851        /**
     852         * Render the items per page option
     853         *
     854         * @since 3.3.0
     855         */
    846856        function render_per_page_options() {
    847857                if ( ! isset( $this->_options['per_page'] ) )
    848858                        return;