Creating Permalink For Custom Post types
In my Previous Post, I wrote about plugins and themes to create Custom Post Type Permalinks. Here I am going to create Custom Post type and Create Permalink for it. Let me creating a custom post type named “recipes” and custom taxonomy “Occasions” by the following way. add_action( 'init', 'kv_register_my_types' ); function kv_register_my_types() { register_post_type( 'recipes', array( 'labels' => array( 'name' => __( 'Recipes' ), ...