IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
187 | 187 | 'per_page' => $args['per_page'], |
188 | 188 | ) ); |
189 | 189 | |
| 190 | echo "<h1>page num $paged</h1>"; |
| 191 | echo "<h1>total items = " . $api->info['results'] . "</h1>"; |
| 192 | echo "<h1>per page = " . $args['per_page'] . "</h1>"; |
| 193 | |
190 | 194 | if ( isset( $api->info['groups'] ) ) { |
191 | 195 | $this->groups = $api->info['groups']; |
192 | 196 | } |
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
18 | 18 | <div class="page-content"> |
19 | 19 | <?php if ( is_home() && current_user_can( 'publish_posts' ) ) : ?> |
20 | 20 | |
21 | | <p><?php printf( esc_html__( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'twentyfifteen' ), esc_url( admin_url( 'post-new.php' ) ) ); ?></p> |
| 21 | <p><?php printf( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'twentyfifteen' ), esc_url( admin_url( 'post-new.php' ) ) ); ?></p> |
22 | 22 | |
23 | 23 | <?php elseif ( is_search() ) : ?> |
24 | 24 | |
| 25 | No newline at end of file |
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
2490 | 2490 | // If true, forcibly turns off SQL_CALC_FOUND_ROWS even when limits are present. |
2491 | 2491 | if ( isset($q['no_found_rows']) ) |
2492 | 2492 | $q['no_found_rows'] = (bool) $q['no_found_rows']; |
2493 | | else |
2494 | | $q['no_found_rows'] = false; |
| 2493 | else { |
| 2494 | if (($q['nopaging'] == true) || ($q['posts_per_page'] = -1)) |
| 2495 | $q['no_found_rows'] = true; |
| 2496 | else |
| 2497 | $q['no_found_rows'] = false; |
| 2498 | } |
| 2499 | |
2495 | 2500 | |
2496 | 2501 | switch ( $q['fields'] ) { |
2497 | 2502 | case 'ids': |