Skip to content

Instantly share code, notes, and snippets.

@hauge75
hauge75 / gist:9cdceb15c55c7738f7afa8170089ce03
Last active October 7, 2023 00:03
Create random slug for custom post
// Create random slug for custom post
function func_update_post_name( $post_id, $post ){
if ( 'post-type-slug' == $post->post_type ) {
remove_action( 'save_post', 'func_update_post_name',30,2 );
// update the post slug
wp_update_post( array(
'ID' => $post_id,