Disallow post slugs that will result in permalinks that conflict with date archive URLs.
On certain permalink structures, a numeric post slug will result in a post permalink that conflicts with a date archive URL. For example, with permastruct `/%year%/%monthnum%/%postname%/`, a post published in May 2015 with slug `'15'` will result in a URL (`/2015/05/15/`) that conflicts with the archive for May 15, 2015. To avoid this problem, `wp_unique_post_slug()` rejects a requested slug when it would generate a conflict of this type. Thus, in our example, `'15'` would become `'15-2'`. Props valendesigns, boonebgorges, Denis-de-Bernardy, loushou. See #5305. Built from https://develop.svn.wordpress.org/trunk@32647 git-svn-id: http://core.svn.wordpress.org/trunk@32617 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
66d76318b8
commit
9f0c6cbf8c
|
@ -3790,6 +3790,27 @@ function wp_unique_post_slug( $slug, $post_ID, $post_status, $post_type, $post_p
|
|||
$check_sql = "SELECT post_name FROM $wpdb->posts WHERE post_name = %s AND post_type = %s AND ID != %d LIMIT 1";
|
||||
$post_name_check = $wpdb->get_var( $wpdb->prepare( $check_sql, $slug, $post_type, $post_ID ) );
|
||||
|
||||
// Prevent post slugs that could result in URLs that conflict with date archives.
|
||||
$conflicts_with_date_archive = false;
|
||||
if ( 'post' === $post_type && preg_match( '/^[0-9]+$/', $slug ) && $slug_num = intval( $slug ) ) {
|
||||
$permastructs = array_values( array_filter( explode( '/', get_option( 'permalink_structure' ) ) ) );
|
||||
$postname_index = array_search( '%postname%', $permastructs );
|
||||
|
||||
/*
|
||||
* Potential date clashes are as follows:
|
||||
*
|
||||
* - Any integer in the first permastruct position could be a year.
|
||||
* - An integer between 1 and 12 that follows 'year' conflicts with 'monthnum'.
|
||||
* - An integer between 1 and 31 that follows 'monthnum' conflicts with 'day'.
|
||||
*/
|
||||
if ( 0 === $postname_index ||
|
||||
( $postname_index && '%year%' === $permastructs[ $postname_index - 1 ] && 13 > $slug_num ) ||
|
||||
( $postname_index && '%monthnum%' === $permastructs[ $postname_index - 1 ] && 32 > $slug_num )
|
||||
) {
|
||||
$conflicts_with_date_archive = true;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Filter whether the post slug would be bad as a flat slug.
|
||||
*
|
||||
|
@ -3799,7 +3820,7 @@ function wp_unique_post_slug( $slug, $post_ID, $post_status, $post_type, $post_p
|
|||
* @param string $slug The post slug.
|
||||
* @param string $post_type Post type.
|
||||
*/
|
||||
if ( $post_name_check || in_array( $slug, $feeds ) || apply_filters( 'wp_unique_post_slug_is_bad_flat_slug', false, $slug, $post_type ) ) {
|
||||
if ( $post_name_check || in_array( $slug, $feeds ) || $conflicts_with_date_archive || apply_filters( 'wp_unique_post_slug_is_bad_flat_slug', false, $slug, $post_type ) ) {
|
||||
$suffix = 2;
|
||||
do {
|
||||
$alt_post_name = _truncate_post_slug( $slug, 200 - ( strlen( $suffix ) + 1 ) ) . "-$suffix";
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.3-alpha-32646';
|
||||
$wp_version = '4.3-alpha-32647';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue