Make WordPress Core

Ticket #41226: 41226.patch

File 41226.patch, 662 bytes (added by adpawl, 7 years ago)
  • class-wp-query.php

     
    18281828                        $q['comments_per_page'] = get_option( 'comments_per_page' );
    18291829                }
    18301830
    1831                 if ( $this->is_home && ( empty( $this->query ) || $q['preview'] == 'true' ) && ( 'page' == get_option( 'show_on_front' ) ) && get_option( 'page_on_front' ) ) {
    1832                         $this->is_page = true;
    1833                         $this->is_home = false;
    1834                         $q['page_id']  = get_option( 'page_on_front' );
    1835                 }
    1836 
    18371831                if ( isset( $q['page'] ) ) {
    18381832                        $q['page'] = trim( $q['page'], '/' );
    18391833                        $q['page'] = absint( $q['page'] );