Changeset 32116 for trunk/src/wp-includes/query.php
- Timestamp:
- 04/12/2015 09:28:58 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/query.php
r31829 r32116 6 6 * also provides functionality for getting URL query information. 7 7 * 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. 9 9 * 10 10 * @package WordPress … … 723 723 if ( 'pre_get_posts' === current_filter() ) { 724 724 $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' ) ); 726 726 _doing_it_wrong( __FUNCTION__, $message, '3.7' ); 727 727 } … … 831 831 * The WordPress Query class. 832 832 * 833 * @link http ://codex.wordpress.org/Function_Reference/WP_Query Codex page.833 * @link https://codex.wordpress.org/Function_Reference/WP_Query Codex page. 834 834 * 835 835 * @since 1.5.0
Note: See TracChangeset
for help on using the changeset viewer.