prevent same wordpress post title
I recently ran into a similar issue (rather tackling how to reset slugs that are dirty after importing). This is a snippit of the code I used to reset the slugs: $wpdb->update( $wpdb->posts, array( ‘post_name’ => sanitize_title( $post_to_fix->post_title ) ), array( ‘ID’ => $post_to_fix->ID ), array( ‘%s’ ), array( ‘%d’ ) ); Primarily focus on … Read more