- Timestamp:
- 10/01/2015 02:09:41 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-posts-list-table.php
r34667 r34728 122 122 123 123 /** 124 * Get the value of the 'orderby' query var. 125 * 126 * @access protected 127 * @since 4.4.0 128 * 129 * @return string The value of 'orderby'. 130 */ 131 protected function get_orderby() { 132 return strtolower( get_query_var( 'orderby' ) ); 133 } 134 135 /** 136 * Get the value of the 'order' query var. 137 * 138 * @access protected 139 * @since 4.4.0 140 * 141 * @return string The value of 'order'. 142 */ 143 protected function get_order() { 144 return strtolower( get_query_var( 'order' ) ); 145 } 146 147 /** 124 148 * 125 149 * @global array $avail_post_stati … … 131 155 global $avail_post_stati, $wp_query, $per_page, $mode; 132 156 157 // is going to call wp() 133 158 $avail_post_stati = wp_edit_posts_query(); 134 159
Note: See TracChangeset
for help on using the changeset viewer.