Changeset 42719 for trunk/src/wp-includes/functions.php
- Timestamp:
- 02/19/2018 02:12:41 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r42710 r42719 674 674 * Determines whether the publish date of the current post in the loop is different 675 675 * from the publish date of the previous post in the loop. 676 * 676 * 677 677 * For more information on this and similar theme functions, check out 678 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 678 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 679 679 * Conditional Tags} article in the Theme Developer Handbook. 680 * 680 * 681 681 * @since 0.71 682 682 * … … 1394 1394 * 1395 1395 * Checks for the 'siteurl' option for whether WordPress is installed. 1396 * 1396 * 1397 1397 * For more information on this and similar theme functions, check out 1398 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1398 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1399 1399 * Conditional Tags} article in the Theme Developer Handbook. 1400 1400 * … … 2728 2728 ); 2729 2729 } else { 2730 $html = __( 'The link you followed no longer exists.' );2730 $html = __( 'The link you followed has expired.' ); 2731 2731 if ( wp_get_referer() ) { 2732 2732 $html .= '</p><p>'; … … 2739 2739 } 2740 2740 2741 wp_die( $html, __( ' An error has occurred.' ), 403 );2741 wp_die( $html, __( 'Something went wrong.' ), 403 ); 2742 2742 } 2743 2743
Note: See TracChangeset
for help on using the changeset viewer.