我的“ werknemers”帖子类型需要MD5生成的子弹才能使其唯一。为此,我添加了以下代码:
function isValidMd5($md5 =''){
return preg_match('/^[a-f0-9]{32}$/', $md5);
}
function custom_unique_post_slug( $slug, $post_ID, $post_status, $post_type ) {
if(isValidMd5($slug)) { } else {
if ( 'werknemers' == $post_type ) {
$slug = md5( time() );
}
}
return $slug;
}
add_filter( 'wp_unique_post_slug', 'custom_unique_post_slug', 10, 4 );
工作完美,但是现在无法访问帖子,并出现“找不到页面”错误。更改永久链接无济于事,也没有重置“ .htaccess”。我假设我需要在“ .htaccess”中放置一些特定的内容,但是我不知道该怎么办。有什么想法吗?
答案 0 :(得分:0)
因为我删除了帖子类型的子弹,所以找不到该帖子。 实际上,它与MD5生成器无关。
要解决此问题,我必须应用以下代码(以防其他人遇到此问题)
function na_remove_slug( $post_link, $post, $leavename ) {
if ( 'werknemers' != $post->post_type || 'publish' != $post->post_status ) {
return $post_link;
}
$post_link = str_replace( '/' . $post->post_type . '/', '/', $post_link );
return $post_link;
}
add_filter( 'post_type_link', 'na_remove_slug', 10, 3 );
function na_parse_request( $query ) {
if ( ! $query->is_main_query() || 2 != count( $query->query ) || ! isset( $query->query['page'] ) ) {
return;
}
if ( ! empty( $query->query['name'] ) ) {
$query->set( 'post_type', array( 'post', 'werknemers', 'page' ) );
}
}
add_action( 'pre_get_posts', 'na_parse_request' );