/**
* Disable random slug generatin for picu collections
*
* picu will then use the collection title to generate the slug, which is the WordPress default.
*/
add_filters( 'picu_collection_do_random_slug', '__return_false' );
Code language: PHP (php)