Make WordPress Core


Ignore:
Timestamp:
04/12/2015 09:28:58 PM (10 years ago)
Author:
ocean90
Message:

Use HTTPS URLs for codex.wordpress.org.

see #27115.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/query.php

    r31829 r32116  
    66 * also provides functionality for getting URL query information.
    77 *
    8  * @link http://codex.wordpress.org/The_Loop More information on The Loop.
     8 * @link https://codex.wordpress.org/The_Loop More information on The Loop.
    99 *
    1010 * @package WordPress
     
    723723    if ( 'pre_get_posts' === current_filter() ) {
    724724        $message = sprintf( __( 'In <code>%1$s</code>, use the <code>%2$s</code> method, not the <code>%3$s</code> function. See %4$s.' ),
    725             'pre_get_posts', 'WP_Query::is_main_query()', 'is_main_query()', __( 'http://codex.wordpress.org/Function_Reference/is_main_query' ) );
     725            'pre_get_posts', 'WP_Query::is_main_query()', 'is_main_query()', __( 'https://codex.wordpress.org/Function_Reference/is_main_query' ) );
    726726        _doing_it_wrong( __FUNCTION__, $message, '3.7' );
    727727    }
     
    831831 * The WordPress Query class.
    832832 *
    833  * @link http://codex.wordpress.org/Function_Reference/WP_Query Codex page.
     833 * @link https://codex.wordpress.org/Function_Reference/WP_Query Codex page.
    834834 *
    835835 * @since 1.5.0
Note: See TracChangeset for help on using the changeset viewer.