Post types
add_filter(
'hivepress/v1/post_types',
function( $post_types ) {
// Change listing URL slug.
$post_types['listing']['rewrite']['slug'] = 'custom-slug';
// Change vendor menu icon.
$post_types['vendor']['menu_icon'] = 'dashicons-building';
return $post_types;
}
);Last updated